From 639cd5db77064c275253828780c17ae59551d95c Mon Sep 17 00:00:00 2001 From: maxbr Date: Fri, 29 Jul 2016 12:43:43 +0200 Subject: import pharos dashboard code JIRA: RELENG-12 The last commit was missing some JS/CSS dependencies of the site. This happened because they are in folders that are named 'build' or 'dist'. This commit adds a bower.json file, that specifies dependencies. Dependencies can now be installed by running 'bower install' in the dashboard/static folder. Change-Id: I054f319c66771f767e97711cb678d79d3bd6bee4 Signed-off-by: maxbr --- pharos-dashboard/templates/registration/login.html | 61 ++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 pharos-dashboard/templates/registration/login.html (limited to 'pharos-dashboard/templates/registration') diff --git a/pharos-dashboard/templates/registration/login.html b/pharos-dashboard/templates/registration/login.html new file mode 100644 index 0000000..efdcd1f --- /dev/null +++ b/pharos-dashboard/templates/registration/login.html @@ -0,0 +1,61 @@ +{% extends "layout/base.html" %} + +{% block basecontent %} +
+
+
+ {% 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 %} + {% if form.errors %} +
+ + Your username and password didn't match. Please try again. +
+ {% endif %} +
+
+
+
+ +
+
+
+ {# Assumes you setup the password_reset view in your URLconf #} + {#

Lost password?

#} +{% endblock basecontent %} -- cgit 1.2.3-korg