This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.

14 lines
239 B
HTML

{% extends 'base.html' %}
{% block title %}Sign Up{% endblock %}
{% block content %}
<h2>Sign up</h2>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">Sign Up</button>
</form>
{% endblock %}