From d12a5a018faf9cba5a19ebb1bda79ad2ffbbd69f Mon Sep 17 00:00:00 2001 From: luxagraf Date: Mon, 19 Nov 2018 11:52:49 -0600 Subject: updated requirements, rolled in style changes and js --- design/templates/lib/login.html | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 design/templates/lib/login.html (limited to 'design/templates/lib') diff --git a/design/templates/lib/login.html b/design/templates/lib/login.html new file mode 100644 index 0000000..de2300d --- /dev/null +++ b/design/templates/lib/login.html @@ -0,0 +1,34 @@ +

Login to {{site.name}}

+{% if form.errors %} +

Your username and password didn't match. Please try again.

+{% endif %} + +{% if next %} + {% if user.is_authenticated %} +

Your account doesn't have access to this page. To proceed, + please login with an account that has access.

+ {% else %} +

Please login to see this page.

+ {% endif %} +{% endif %} + +
+{% csrf_token %} +
+ {{ form.username.label_tag }} + {{ form.username }} +
+
+ {{ form.password.label_tag }} + {{ form.password }} +
+ + + +Cancel +
+ +{# Assumes you setup the password_reset view in your URLconf #} +
+

No account yet? Sign up.
+Forgot your password?

-- cgit v1.2.3