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

« back to all changes in this revision

Viewing changes to src/webui/templates/account/user_logged_out_no_valid_emails.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:
1
 
{% extends "base.html" %}
 
1
{% extends "vanilla/base.html" %}
2
2
{% load i18n %}
3
3
{% load static_url %}
4
4
 
5
5
{% comment %}
6
 
Copyright 2010-2013 Canonical Ltd.  This software is licensed under the
 
6
Copyright 2010-2019 Canonical Ltd.  This software is licensed under the
7
7
GNU Affero General Public License version 3 (see the file  LICENSE).
8
8
{% endcomment %}
9
9
 
10
10
{% block title %}{% trans "Your account does not have a valid email address" %}{% endblock %}
11
11
 
12
 
{% block text_title %}<h1 class="u1-h-main">{% trans "Your account does not have a valid email address" %}</h1>{% endblock %}
 
12
{% block text_title %}<h1>{% trans "Your account does not have a valid email address" %}</h1>{% endblock %}
13
13
 
14
14
{% block content %}
15
 
<p>{% blocktrans %}
16
 
You have no valid email addresses linked to your account, so it was deactivated.
17
 
To reactivate the account please contact our support team at:{% endblocktrans %}
18
 
<a href="{{ 'support_form'|static_url }}">{{ 'support_form'|static_url }}</a>
19
 
</p>
 
15
<div class="row">
 
16
  <div class="col-8">
 
17
    <p>{% blocktrans %}
 
18
    You have no valid email addresses linked to your account, so it was deactivated.
 
19
    To reactivate the account please contact our support team at:{% endblocktrans %}
 
20
    <a href="{{ 'support_form'|static_url }}">{{ 'support_form'|static_url }}</a>
 
21
    </p>
 
22
  </div>
 
23
</div>
20
24
 
21
25
{% endblock %}