mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
16 lines
316 B
HTML
16 lines
316 B
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=".">
|
|
<table>
|
|
{{ form }}
|
|
</table>
|
|
<input type="submit" value="{% trans "Create Account" %}" />
|
|
</form>
|
|
{% endblock %}
|