working base site setup with gatekeeping working

This commit is contained in:
2026-08-03 12:43:33 -05:00
parent 2764644d8b
commit 85e6241ad4
37 changed files with 1146 additions and 58 deletions
+13
View File
@@ -0,0 +1,13 @@
{% extends 'base.html' %}
{% block title %}Login - Packs{% endblock %}
{% block content %}
<h1>Login</h1>
<form method="post" action="{% url 'profiles:login' %}">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">Log in</button>
</form>
<p>No account? <a href="{% url 'profiles:register' %}">Register</a></p>
{% endblock %}