Adding sms sending views

This commit is contained in:
Pete Herlihy
2015-11-30 14:22:39 +00:00
parent 3acbd331f3
commit 13e14d057b

View File

@@ -56,3 +56,13 @@ def addservice():
@main.route("/two-factor")
def twofactor():
return render_template('two-factor.html')
@main.route("/send-sms")
def sendsms():
return render_template('send_sms.html')
@main.route("/check-sms")
def checksms():
return render_template('check_sms.html')