Add signup and login pages

This commit is contained in:
2024-06-29 19:29:47 -04:00
parent 3b0746ed83
commit 589d109cec
8 changed files with 75 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
{% extends "base.html" %}
{% block title %}Log In{% endblock %}
{% block content %}
<h2>Log In</h2>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">Log In</button>
</form>
{% endblock %}