32 lines
988 B
HTML
32 lines
988 B
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
{% load url from future %}
|
|
|
|
{% block title %}{% trans "Registration"%}{% endblock %}
|
|
|
|
{% block maincontent %}
|
|
<div class="grid_5">
|
|
<h2>{% trans "Registration" %}</h2>
|
|
<p>{% blocktrans %}
|
|
After you've provided your account data, you'll receive an email asking you to verify your email address.
|
|
You have to click on the link in this verification email to confirm your email address, otherwise your can't login.
|
|
{% endblocktrans %}</p>
|
|
</div>
|
|
|
|
<form method="post" action="{% url 'membership-register' %}" class="grid_7">
|
|
{% csrf_token %}
|
|
<fieldset>
|
|
<legend>{% trans "Registration"%}</legend>
|
|
{% include "form.html" %}
|
|
<p class="buttonbar">
|
|
<button type="reset"><img src="{{STATIC_URL}}icons/arrow_undo.png" alt="{% trans 'reset' %}" /> {% trans 'reset' %}</button>
|
|
<button type="submit"><img src="{{STATIC_URL}}icons/user_add.png" alt="{% trans 'register' %}" /> {% trans 'register' %}</button>
|
|
</p>
|
|
</fieldset>
|
|
</form>
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|