diff options
author | luxagraf <sng@luxagraf.net> | 2018-11-14 13:17:42 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-11-14 13:17:42 -0600 |
commit | a0b95dc2dfb84c682bb8f677e5d471f84e5028fe (patch) | |
tree | 6dd1919856f736c5b644270d59b57e4bb20336c5 /design/templates/registration |
wrote out basic notes skeleton
Diffstat (limited to 'design/templates/registration')
-rw-r--r-- | design/templates/registration/login.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/design/templates/registration/login.html b/design/templates/registration/login.html new file mode 100644 index 0000000..13b1c6c --- /dev/null +++ b/design/templates/registration/login.html @@ -0,0 +1,35 @@ +{% extends 'base.html' %} +{% block content %} +{% if form.errors %} +<p>Your username and password didn't match. Please try again.</p> +{% endif %} + +{% if next %} + {% if user.is_authenticated %} + <p>Your account doesn't have access to this page. To proceed, + please login with an account that has access.</p> + {% else %} + <p>Please login to see this page.</p> + {% endif %} +{% endif %} + +<form method="post" action="{% url 'login' %}"> +{% csrf_token %} +<table> +<tr> + <td>{{ form.username.label_tag }}</td> + <td>{{ form.username }}</td> +</tr> +<tr> + <td>{{ form.password.label_tag }}</td> + <td>{{ form.password }}</td> +</tr> +</table> + +<input type="submit" value="login"> +<input type="hidden" name="next" value="{{ next }}"> +</form> + +{# Assumes you setup the password_reset view in your URLconf #} +<p><a href="{% url 'password_reset' %}">Lost password?</a></p> +{% endblock %} |