Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
359 B
16 lines
359 B
{% extends "index.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block Headline %}Create Account{% endblock %}
|
|
|
|
{% block Content %}
|
|
<h2>Create Account</h2>
|
|
<p>Please fill in the following form.</p>
|
|
|
|
<form method="post" action=".">{% csrf_token %}
|
|
<table>
|
|
{{ form }}
|
|
</table>
|
|
<input type="submit" value="{% trans "Create Account" %}" />
|
|
</form>
|
|
{% endblock %}
|