diff --git a/app/main/views/index.py b/app/main/views/index.py index 68115ea49..a40d3a0cf 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -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') diff --git a/app/templates/check_sms.html b/app/templates/check_sms.html new file mode 100644 index 000000000..22fe983ee --- /dev/null +++ b/app/templates/check_sms.html @@ -0,0 +1,21 @@ +{% extends "admin_template.html" %} + +{% block page_title %} +GOV.UK Notify | Send text messages +{% endblock %} + +{% block content %} + +
This page will be where we check the text messages we're about to send
+ + +