Brought over basic templates from mumble-django

This commit is contained in:
2010-02-25 18:28:32 +00:00
parent 7f86df2e6b
commit 982223f4aa
9 changed files with 181 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{% 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=".">
<table>
{{ form }}
</table>
<input type="submit" value="{% trans "Create Account" %}" />
</form>
{% endblock %}