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

« back to all changes in this revision

Viewing changes to src/webui/templates/account/account_deleted.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
 
4
4
{% comment %}
5
 
Copyright 2013 Canonical Ltd.  This software is licensed under the
 
5
Copyright 2013-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
 
9
9
{% block title %}
10
 
    {% blocktrans %}Account Deleted{% endblocktrans %}
 
10
  {% blocktrans %}Account Deleted{% endblocktrans %}
11
11
{% endblock %}
12
12
 
13
13
{% block text_title %}
14
 
  <h1 class="main">{% trans "Account Deleted" %}</h1>
 
14
  <h1>{% trans "Account Deleted" %}</h1>
15
15
{% endblock %}
16
16
 
17
17
{% block content %}
18
 
<p>{% blocktrans %}Your Ubuntu One account has now been deleted.
19
 
All emails associated with the account have been removed. 
20
 
You can sign up for a new account with any of those emails if you want.
21
 
{% endblocktrans %}</p>
22
 
 
23
 
<p>{% blocktrans %}All authentication tokens associated with the account have
24
 
also been deleted. That means any apps using that account will have to login
25
 
again with a different account.
26
 
{% endblocktrans %}</p>
27
 
 
28
 
<p>{% blocktrans %}The openid identifier associated with the account has
29
 
been reserved so that it cannot be given out to anyone else. This is so that
30
 
no-one can impersonate you using openid. If you sign up for a new account
31
 
you will have a different openid identifier.
32
 
{% endblocktrans %}</p>
 
18
  <div class="row">
 
19
    <div class="col-8">
 
20
      <p>{% blocktrans %}Your Ubuntu One account has now been deleted.
 
21
      All emails associated with the account have been removed.
 
22
      You can sign up for a new account with any of those emails if you want.
 
23
      {% endblocktrans %}</p>
 
24
      <p>{% blocktrans %}All authentication tokens associated with the account have
 
25
      also been deleted. That means any apps using that account will have to login
 
26
      again with a different account.
 
27
      {% endblocktrans %}</p>
 
28
      <p>{% blocktrans %}The openid identifier associated with the account has
 
29
      been reserved so that it cannot be given out to anyone else. This is so that
 
30
      no-one can impersonate you using openid. If you sign up for a new account
 
31
      you will have a different openid identifier.
 
32
      {% endblocktrans %}</p>
 
33
    </div>
 
34
  </div>
33
35
{% endblock %}