Files
test-auth/app/templates/registration/registration_form.html

20 lines
374 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block title %}Create Account{% endblock %}
{% block content %}
<h2>Create Account</h2>
<p>Please fill in the following form.</p>
<form method="post" action=".">
<table>
{{ form }}
{% csrf_token %}
</table>
<br />
<input type="submit" value="{% trans "Create Account" %}" />
</form>
{% endblock %}