Remove unused pages with buttons

We had two templates that contained a link styled as an old style
button but that weren't being used anywhere (one would actually give a
`500` if you tried to visit it). This removes them and the view function
for one of them (the other no longer had a view function).
This commit is contained in:
Katie Smith
2020-02-04 11:38:22 +00:00
parent dca6d1690f
commit a26e8c55ef
4 changed files with 1 additions and 67 deletions

View File

@@ -21,7 +21,7 @@ from app.main.views.sub_navigation_dictionaries import (
pricing_nav,
using_notify_nav,
)
from app.utils import get_logo_cdn_domain, user_is_logged_in
from app.utils import get_logo_cdn_domain
@main.route('/')
@@ -54,12 +54,6 @@ def error(status_code):
abort(status_code)
@main.route("/verify-mobile")
@user_is_logged_in
def verify_mobile():
return render_template('views/verify-mobile.html')
@main.route('/cookies')
def cookies():
return render_template('views/cookies.html')