From a33398a46a655c09518af124ac2160794c77b444 Mon Sep 17 00:00:00 2001 From: Pete Herlihy Date: Mon, 30 Nov 2015 14:49:11 +0000 Subject: [PATCH] Added email sending views to the index --- app/main/views/index.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/app/main/views/index.py b/app/main/views/index.py index a40d3a0cf..fb7d299c9 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -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')