RandomSec/MUOR/templates/registration/signup.html
2022-01-27 19:17:26 +01:00

13 lines
291 B
HTML

<!-- templates/registration/signup.html -->
{% extends 'base.html' %}
{% block title %}Sign Up{% endblock %}
{% block content %}
<h2>Sign Up</h2>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button class="btn btn-light" type="submit">Sign Up</button>
</form>
{% endblock %}