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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% extends "vanilla/base.html" %}
{% load i18n %}
{% load static_url %}

{% comment %}
Copyright 2010-2019 Canonical Ltd.  This software is licensed under the
GNU Affero General Public License version 3 (see the file  LICENSE).
{% endcomment %}

{% block title %}{% trans "Your account does not have a valid email address" %}{% endblock %}

{% block text_title %}<h1>{% trans "Your account does not have a valid email address" %}</h1>{% endblock %}

{% block content %}
<div class="row">
  <div class="col-8">
    <p>{% blocktrans %}
    You have no valid email addresses linked to your account, so it was deactivated.
    To reactivate the account please contact our support team at:{% endblocktrans %}
    <a href="{{ 'support_form'|static_url }}">{{ 'support_form'|static_url }}</a>
    </p>
  </div>
</div>

{% endblock %}