RandomSec/MUOR/templates/registration/signup.html

13 lines
291 B
HTML
Raw Normal View History

2022-01-23 22:34:16 +01:00
<!-- 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 }}
2022-01-25 18:48:45 +01:00
<button class="btn btn-light" type="submit">Sign Up</button>
2022-01-23 22:34:16 +01:00
</form>
{% endblock %}