add stub login page

This commit is contained in:
Seth Ladygo
2019-03-12 17:36:40 -07:00
parent 043b10c2d2
commit c543d64726
4 changed files with 50 additions and 1 deletions

View File

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