past3d/users/templates/users/send_confirmation.html

36 lines
992 B
HTML

{% extends "base.html" %}
{% block title %} Confirm your email address{% endblock %}
{% block headeraddons %}
<script src="{{STATIC_URL}}js/jquery-1.10.2.min.js"></script>
{% endblock %}
{% block content %}
<div id="content">
<div id="prompt">
<!-- if IE without GCF, prompt goes here -->
</div>
<h1>Confirm your registration</h1>
<div class="pure-g-r">
<div class="pure-u-2-3">
<div class="textcontainer">
Oh hey <b>{{confirm_user.username}}</b>,<br/>
to complete your registration please klick on the link in the email
that has just been send to you.
<br/>
<br/>
If you did not receive an email with a validation link,
please click <a href="{% url 'send_confirmation' user_id=confirm_user.pk %}">here</a> to send another one.
</div>
</div>
<div class="pure-u-1-3">
{% include 'pastebin/latest_geometries.html' %}
</div>
</div>
</div>
{% endblock %}