takahe/templates/auth/signup.html

20 wiersze
513 B
HTML
Czysty Zwykły widok Historia

2022-11-18 02:16:34 +00:00
{% extends "base.html" %}
{% block title %}Create Account{% endblock %}
{% block content %}
<form action="." method="POST">
{% csrf_token %}
<fieldset>
<legend>Create An Account</legend>
2022-11-18 07:09:04 +00:00
{{ config.signup_text|safe|linebreaks }}
2022-11-18 02:16:34 +00:00
{% for field in form %}
{% include "forms/_field.html" %}
{% endfor %}
</fieldset>
<div class="buttons">
<button>Create</button>
</div>
</form>
{% endblock %}