Added email sending views to the index

This commit is contained in:
Pete Herlihy
2015-11-30 14:49:11 +00:00
parent e394f6eac2
commit a33398a46a

View File

@@ -66,3 +66,13 @@ def sendsms():
@main.route("/check-sms")
def checksms():
return render_template('check_sms.html')
@main.route("/send-email")
def sendemail():
return render_template('send_email.html')
@main.route("/check-email")
def checkemail():
return render_template('check_email.html')