2017-10-08 20:21:51 +00:00
|
|
|
{% extends "base_page.html" %}
|
|
|
|
{% load bootstrap3 %}
|
|
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% load envelope_tags %}
|
2017-10-31 14:57:26 +00:00
|
|
|
{% load i18n %}
|
2017-10-08 20:21:51 +00:00
|
|
|
|
|
|
|
{% block page_name %}Registration{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="container" style="max-width:520px;">
|
|
|
|
<div class="page-lead">
|
2017-10-31 14:57:26 +00:00
|
|
|
<h2>{% trans 'Registration' %}</h2>
|
|
|
|
<p class="lead">{% trans 'Create your account and get active!' %}</p>
|
2017-10-08 20:21:51 +00:00
|
|
|
</div>
|
|
|
|
{% bootstrap_messages %}
|
|
|
|
<form action="{% url 'registration_register' %}" method="post">
|
|
|
|
{% csrf_token %}
|
|
|
|
{% antispam_fields %}
|
|
|
|
{{ form|crispy }}
|
2017-10-31 14:57:26 +00:00
|
|
|
<input class="btn btn-success pull-right" type="submit" name="su/bmit" value="{% trans 'Register'%}"/>
|
2017-10-08 20:21:51 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|