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

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
<!-- Copyright 2010 Canonical Ltd.  This software is licensed under the
GNU Affero General Public License version 3 (see the file  LICENSE). -->

{% extends "base.html" %}
{% load i18n %}

{% block "title" %}{% trans "Complete email address validation" %}{% endblock %}

{% block "content" %}
<div id="auth">
	<h2 class="main">{% blocktrans %}Validate {{ email }}?{% endblocktrans %}</h2>

	<div class="info">
		<p>{% blocktrans %}Are you sure you want to confirm and validate this
		email address? {% endblocktrans %}</p>
	</div>

    <div class="actions">
	    <form action="" method="post">
			<p>
				<input type="hidden" name="post" value="yes" />
	            <button type="submit" name="continue" class="btn">
					<span><span>{% trans "Yes, I'm sure" %}</span></span>
				</button>
		        {% trans "or" %}
			    <a href="/">{% trans "cancel" %}</a>
	        </p>
		</form>
	</div>
    <br style="clear: both" />
</div>
{% endblock %}