Added email and text message not received pages in registration flow

This commit is contained in:
Chris Heathcote
2015-11-30 16:08:44 +00:00
parent d8151c5ac7
commit 96648ed58b
6 changed files with 97 additions and 3 deletions

View File

@@ -66,3 +66,13 @@ def sendsms():
@main.route("/check-sms")
def checksms():
return render_template('check_sms.html')
@main.route("/email-not-received")
def emailnotreceived():
return render_template('email-not-received.html')
@main.route("/text-not-received")
def textnotreceived():
return render_template('text-not-received.html')