contact content

This commit is contained in:
Beverly Nguyen
2024-11-18 14:00:52 -08:00
parent 0a50913e62
commit 9a5a960e57
4 changed files with 48 additions and 0 deletions

View File

@@ -295,6 +295,14 @@ def about_notify():
)
@main.route("/about/contact")
def contact():
return render_template(
"views/about/contact.html",
navigation_links=about_notify_nav(),
)
@main.route("/using-notify/guidance/create-and-send-messages")
@user_is_logged_in
def create_and_send_messages():

View File

@@ -113,4 +113,8 @@ def about_notify_nav():
"name": "About notify",
"link": "main.about_notify",
},
{
"name": "Contact",
"link": "main.contact",
},
]