summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/register.html
blob: 2be9a95c99270d97ceb32022ca9dce237c1bd363 (plain)
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
{% extends "base.html" %}
{% load i18n %}
{% load crispy_forms_tags %}


{% block title %}
{% trans 'Register' %} - {{ app_name|title }}
{% endblock %}

{% block content %}

<div id="register">

<h2>Register</h2>

<form action="{{ request.path }}?next={{ next|urlencode }}" method="post" class="form-horizontal">
    {% csrf_token %}
    {{ form|crispy }}
    <div class="control-group">
        <div class="controls">
            <button type="submit" class="btn btn-primary">{% trans "Register" %}</button>
        </div>
    </div>
</form>

</div>

{% endblock %}