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