working base site setup with gatekeeping working
This commit is contained in:
@@ -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 %}
|
||||
Reference in New Issue
Block a user