~ubuntuone-pqm-team/canonical-identity-provider/trunk

« back to all changes in this revision

Viewing changes to identityprovider/templates/account/confirm_new_email.html

  • Committer: Danny Tamez
  • Date: 2010-04-21 15:29:24 UTC
  • Revision ID: danny.tamez@canonical.com-20100421152924-lq1m92tstk2iz75a
Canonical SSO Provider (Open Source) - Initial Commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!-- Copyright 2010 Canonical Ltd.  This software is licensed under the
 
2
GNU Affero General Public License version 3 (see the file  LICENSE). -->
 
3
 
 
4
{% extends "base.html" %}
 
5
{% load i18n %}
 
6
 
 
7
{% block "title" %}{% trans "Complete email address validation" %}{% endblock %}
 
8
 
 
9
{% block "content" %}
 
10
<div id="auth">
 
11
        <h2 class="main">{% blocktrans %}Validate {{ email }}?{% endblocktrans %}</h2>
 
12
 
 
13
        <div class="info">
 
14
                <p>{% blocktrans %}Are you sure you want to confirm and validate this
 
15
                email address? {% endblocktrans %}</p>
 
16
        </div>
 
17
 
 
18
    <div class="actions">
 
19
            <form action="" method="post">
 
20
                        <p>
 
21
                                <input type="hidden" name="post" value="yes" />
 
22
                    <button type="submit" name="continue" class="btn">
 
23
                                        <span><span>{% trans "Yes, I'm sure" %}</span></span>
 
24
                                </button>
 
25
                        {% trans "or" %}
 
26
                            <a href="/">{% trans "cancel" %}</a>
 
27
                </p>
 
28
                </form>
 
29
        </div>
 
30
    <br style="clear: both" />
 
31
</div>
 
32
{% endblock %}
 
33