takahe/templates/auth/signup.html

19 lines
460 B
HTML
Raw Normal View History

2022-11-17 18:16:34 -08:00
{% extends "base.html" %}
{% block title %}Create Account{% endblock %}
{% block content %}
<form action="." method="POST">
{% csrf_token %}
<fieldset>
<legend>Create An Account</legend>
{% for field in form %}
{% include "forms/_field.html" %}
{% endfor %}
</fieldset>
<div class="buttons">
<button>Create</button>
</div>
</form>
{% endblock %}