mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
20 lines
374 B
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 %}
|