Added forgot password / create new password screens

Create new password would be sent in an email to the user.
This commit is contained in:
Chris Heathcote
2015-11-30 16:19:59 +00:00
parent b2dd3ca214
commit 48f722b3b9
4 changed files with 62 additions and 1 deletions

View File

@@ -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')