mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-23 07:46:23 -04:00
109898688: Implement get method for email-not-received and text-not-received
This commit is contained in:
23
app/main/views/code_not_received.py
Normal file
23
app/main/views/code_not_received.py
Normal file
@@ -0,0 +1,23 @@
|
||||
from flask import render_template
|
||||
|
||||
from app.main import main
|
||||
|
||||
|
||||
@main.route("/email-not-received", methods=['GET'])
|
||||
def email_not_received():
|
||||
return render_template('views/email-not-received.html')
|
||||
|
||||
|
||||
@main.route('/email-not-received', methods=['POST'])
|
||||
def check_and_resend_email_code():
|
||||
return None
|
||||
|
||||
|
||||
@main.route("/text-not-received", methods=['GET'])
|
||||
def text_not_received():
|
||||
return render_template('views/text-not-received.html')
|
||||
|
||||
|
||||
@main.route('/text-not-received', methods=['POST'])
|
||||
def check_and_resend_text_code():
|
||||
return None
|
||||
Reference in New Issue
Block a user