summaryrefslogtreecommitdiffstats
path: root/askbot/templates/authopenid/changeemail.html
blob: 37de8369a96c9c7d7c9f45b565c1e00cea77f5b9 (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
{% extends "one_column_body.html" %}
{% block title %}{% spaceless %}{% trans %}Change Email{% endtrans %}{% endspaceless %}{% endblock %}
{% block content %}
{% if action_type=="validate" %}
    <div id="main-bar" class="headNormal">
        {% trans %}Validate email{% endtrans %}
    </div>
    <p class="message">
        {% trans %}<span class=\"strong big\">An email with a validation link has been sent to 
{{ email }}.</span> Please <strong>follow the emailed link</strong> with your 
web browser. Email validation is necessary to help insure the proper use of 
email on <span class=\"orange\">Q&amp;A</span>. If you would like to use 
<strong>another email</strong>, please <a 
href='{{ change_email_url }}'><strong>change it again</strong></a>.{% endtrans %}
    </p>
{% elif action_type=="validation_complete" %}
    <div id="main-bar" class="headNormal">
        {% trans %}Email verified{% endtrans %}
    </div>
    <p class="message">
        {% trans %}<span class=\"big strong\">Thank you for verifying your email!</span> Now 
you can <strong>ask</strong> and <strong>answer</strong> questions. Also if 
you find a very interesting question you can <strong>subscribe for the 
updates</strong> - then will be notified about changes <strong>once a day</strong>
or less frequently.{% endtrans %}
    </p>
{% endif %}
{% endblock %}
<!-- end changeemail.html -->