summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/authopenid/changeemail.html
blob: 52dc6a0cb550104265371e0f3969fc84de17b095 (plain)
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
77
78
79
80
{% extends "one_column_body.html" %}
{% block title %}{% spaceless %}{% trans %}Change email{% endtrans %}{% endspaceless %}{% endblock %}
{% block content %}
<!-- changeemail.html action_type={{action_type}}-->
{% if action_type=="change" %}
    <h1>
        {% if user.email %}
            {% trans %}Change email{% endtrans %}
        {% else %}
            {% trans %}Save your email address{% endtrans %}
        {% endif %}
    </h1>
    <p class="message">
        {% if user.email %}
            {% trans %}change {{email}} info{% endtrans %}
        {% else %}
            {% trans %}here is why email is required, see {{gravatar_faq_url}}{% endtrans %}
        {% endif %}
    </p>
    {% if msg %}
    <p class="error">{{ msg }}</p>
    {% endif %}
    <div class="aligned">
        <form action="." method="post" accept-charset="utf-8">
            {% if next %}
                <input type="hidden" name="next" value="{{next}}"/>
            {% endif %}
            <div class="form-row-vertical">
                <label for="id_email">{% if user.email %}{% trans %}Your new Email{% endtrans %}{% else %}{% trans %}Your Email{% endtrans %}{% endif %}</label>
                {% if form.email.errors %}
                <p class="error">{{form.email.errors|join(", ")}}</p>
                {% endif %}
                {{ form.email }}
            </div>
            <div class="submit-row">
                <input class="submit" type="submit" name="change_email" value="{% if user.email %}{% trans %}Change email{% endtrans %}{% else %}{% trans %}Save Email{% endtrans %}{% endif %}">
                {% if user.email %}
                <input class="submit" type="submit" name="cancel" value="{% trans %}Cancel{% endtrans %}">
                {% endif %}
            </div>
        </form>
    </div>
{% elif action_type=="validate" %}
    <div id="main-bar" class="headNormal">
        {% trans %}Validate email{% endtrans %}
    </div>
    <p class="message">
        {% trans %}validate {{email}} info or go to {{change_email_url}}{% endtrans %}
    </p>
{% elif action_type=="keep" %}
    <div id="main-bar" class="headNormal">
        {% trans %}Email not changed{% endtrans %}
    </div>
    <p class="message">
        {% trans %}old {{email}} kept, if you like go to {{change_email_url}}{% endtrans %}
    </p>
{% elif action_type=="done_novalidate" %}
    <div id="main-bar" class="headNormal">
        {% trans %}Email changed{% endtrans %}
    </div>
    <p class="message">
        {% trans %}your current {{email}} can be used for this{% endtrans %}
    </p>
{% elif action_type=="validation_complete" %}
    <div id="main-bar" class="headNormal">
        {% trans %}Email verified{% endtrans %}
    </div>
    <p class="message">
        {% trans %}thanks for verifying email{% endtrans %}
    </p>
{% elif action_type=="key_not_sent" %}
    <div id="main-bar" class="headNormal">
        {% trans %}email key not sent{% endtrans %}
    </div>
    <p class="message">
        {% trans %}email key not sent {{email}} change email here {{change_link}}{% endtrans %}
    </p>
{% endif %}
{% endblock %}
<!-- end changeemail.html -->