~mfoord/canonical-identity-provider/keep-passwords

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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{% extends "base.html" %}
{% load i18n %}

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

{% block html_extra %}data-qa-id="edit_account"{% endblock %}

{% block title %}
    {% blocktrans %}Delete account{% endblocktrans %}
{% endblock %}

{% block text_title %}
  <h1 class="main">{% trans "Delete account" %}</h1>
{% endblock %}

{% block content %}

<p>{% blocktrans %}Please be aware that deleting your {{ brand_description }} 
account means you'll lose access to all your accounts tied to your 
{{ brand_description }} login. This means you won't be able to change their 
status or cancel any services associated.
{% endblocktrans %}</p>

<h2>{% trans "Ubuntu One subscriptions:" %}</h2>

<p>{% blocktrans %}Before deleting your {{ brand description }} account, please make sure 
you've cancelled all your paid subscriptions (either storage, music streaming, or both). 
Deleting your login account does not yet cancel all payments automatically and thus, if
you don't cancel them yourself, you will be charged on your credit card or
paypal account after deleting the account.
{% endblocktrans %}</p>

<p>{% blocktrans %}For instructions on how to cancel your subscriptions read:
{% endblocktrans %}<a href="https://one.ubuntu.com/help/faq/how-do-i-downgrade-or-cancel-my-ubuntu-one-account/">{% trans "How do I downgrade or cancel my Ubuntu One account" %}</a>
</p>

<h2>Launchpad:</h2>

<p>{% blocktrans %}All content published under your launchpad user will remain
public unless you deactivate your launchpad account first.  
{% endblocktrans %}</p>

<h2>{% trans "Other services:" %}</h2>

<p>{% blocktrans %}Landscape, Ubuntu wiki sites, Ubuntu Forum and AskUbuntu 
accounts won't be deleted, but you will lose access to those too. You should 
contact each team if you want to make sure each of those are eliminated too.
{% endblocktrans %}</p>

<p>{% blocktrans %}For more information check out:{% endblocktrans %}
<a href="https://one.ubuntu.com/help/faq/how-do-i-downgrade-or-cancel-my-ubuntu-one-account/">{% trans "How do I downgrade or cancel my Ubuntu One account" %}</a>. 
</p>
<p>{% blocktrans %}Please take a moment to read through this page and make sure
you understand the consequences of deleting your account before you confirm
this action.
{% endblocktrans %}</p>

{% include "widgets/last_auth_sites.html" %}
<form action="" method="post" class="shortfields"> 
    {% csrf_token %}

    <p class="actions">
        <a class="cta secondary" href="/">{% trans "Cancel" %}</a>
    {% if not readonly %}
        {% trans "or" %}
        <button type="submit" class="btn cta delete-button">
            <span><span>{% trans "Permanently delete account" %}</span></span>
        </button>
    {% endif %}
    </p>
</form>

{% endblock %}