summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/register.html
blob: 1e969076bf77610a69aa57461c82e56b702447e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "base.html" %}
{% load i18n %}

{% block content %}

<form action="" method="post" class="login mm_clear">
	{% csrf_token %}
	{{ form.as_p }}
	<input type=hidden name=next value={{ next }}>
	<div class="field">
		<button class="btn btn-primary" type="submit">
			{% trans "Register" %}
		</button>
	</div>
</form>

{% endblock %}