RandomSec/Serwer_django/templates/registration/signup.html

13 lines
269 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 }}
<button type="submit">Sign Up</button>
</form>
{% endblock %}