Add users

This commit is contained in:
Joakim Hellsén 2024-02-23 06:21:06 +01:00
commit 09ad44f247
13 changed files with 382 additions and 57 deletions

View file

@ -0,0 +1,12 @@
{% extends "base.html" %}
{% block content %}
<p>
You can register <a href='{% url "feeds:register" %}'>here</a>.
</p>
<h2>Login</h2>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">Login</button>
</form>
{% endblock %}