~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
26
27
28
29
30
31
32
33
34
35
{% extends "vanilla/base.html" %}
{% load i18n %}

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

{% block title %}
  {% blocktrans %}Account Deleted{% endblocktrans %}
{% endblock %}

{% block text_title %}
  <h1>{% trans "Account Deleted" %}</h1>
{% endblock %}

{% block content %}
  <div class="row">
    <div class="col-8">
      <p>{% blocktrans %}Your Ubuntu One account has now been deleted.
      All emails associated with the account have been removed.
      You can sign up for a new account with any of those emails if you want.
      {% endblocktrans %}</p>
      <p>{% blocktrans %}All authentication tokens associated with the account have
      also been deleted. That means any apps using that account will have to login
      again with a different account.
      {% endblocktrans %}</p>
      <p>{% blocktrans %}The openid identifier associated with the account has
      been reserved so that it cannot be given out to anyone else. This is so that
      no-one can impersonate you using openid. If you sign up for a new account
      you will have a different openid identifier.
      {% endblocktrans %}</p>
    </div>
  </div>
{% endblock %}