~deadlight/canonical-identity-provider/misc-account

« back to all changes in this revision

Viewing changes to src/webui/templates/account/suspended.html

  • Committer: Karl Williams
  • Date: 2019-09-04 16:27:41 UTC
  • Revision ID: karl@deadlight.net-20190904162741-nli4p6r411k2k7bs
Convert remaining accont templates and template fragments to vanilla

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
{% load i18n %}
3
3
 
4
4
{% comment %}
5
 
Copyright 2010 Canonical Ltd.  This software is licensed under the
 
5
Copyright 2010-2019 Canonical Ltd.  This software is licensed under the
6
6
GNU Affero General Public License version 3 (see the file  LICENSE).
7
7
{% endcomment %}
8
8
 
10
10
 
11
11
{% block title %}{% trans "Account suspended" %}{% endblock %}
12
12
 
13
 
{% block text_title %}<h1 class="u1-h-main">{% trans "Account suspended" %}</h1>{% endblock %}
 
13
{% block text_title %}<h1>{% trans "Account suspended" %}</h1>{% endblock %}
14
14
 
15
15
{% block content %}
16
 
<div>
17
 
    <p>
18
 
    {% blocktrans %}Your account has been suspended.{% endblocktrans %}
19
 
    </p>
 
16
<div class="row">
 
17
  <div class="col-8">
 
18
    <div class="p-notification--negative">
 
19
      <p class="p-notification__response">
 
20
        {% blocktrans %}Your account has been suspended.{% endblocktrans %}
 
21
      </p>
 
22
    </div>
 
23
  </div>
20
24
</div>
21
25
{% endblock %}