Added signup file

This commit is contained in:
Kristofers Solo 2023-03-27 21:44:41 +03:00
parent dcf849257e
commit 27a70f6b5c

View File

@ -0,0 +1,11 @@
{% extends "layout.html" %}
{% block title %}Sign Up{% endblock %}
{% block content %}
<form method="post">
{% csrf_token %}{{ form }}
<p>
Have an account? Login <a href="{% url 'login' %}">Here</a>!
</p>
<button type="submit">Register</button>
</form>
{% endblock %}