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


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

{% 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 %}

{# vim: set noet: #}