diff --git a/app/main/views/index.py b/app/main/views/index.py index ee5e2dab1..02f61ff6c 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -101,3 +101,13 @@ def showjob(): @main.route("/jobs/job/notification") def shownotification(): return render_template('notification.html') + + +@main.route("/forgot-password") +def forgotpassword(): + return render_template('forgot-password.html') + + +@main.route("/new-password") +def newpassword(): + return render_template('new-password.html') diff --git a/app/templates/forgot-password.html b/app/templates/forgot-password.html new file mode 100644 index 000000000..e94945d4f --- /dev/null +++ b/app/templates/forgot-password.html @@ -0,0 +1,27 @@ +{% extends "admin_template.html" %} + +{% block page_title %} +GOV.UK Notify +{% endblock %} + +{% block content %} + +
+
+

Create a new password

+ +

If you have forgotten your password, we can send you an email to create a new password.

+ +

+ + +

+ + +

+ Send email +

+
+
+ +{% endblock %} \ No newline at end of file diff --git a/app/templates/new-password.html b/app/templates/new-password.html new file mode 100644 index 000000000..0d2c811f7 --- /dev/null +++ b/app/templates/new-password.html @@ -0,0 +1,24 @@ +{% extends "admin_template.html" %} + +{% block page_title %} +GOV.UK Notify +{% endblock %} + +{% block content %} + +
+
+

Create a new password

+ +

+ + +

+ +

+ Continue +

+
+
+ +{% endblock %} \ No newline at end of file diff --git a/app/templates/signin.html b/app/templates/signin.html index 3d8df9d9d..3d6609010 100644 --- a/app/templates/signin.html +++ b/app/templates/signin.html @@ -19,7 +19,7 @@ Hello world!


- Forgotten password? + Forgotten password?