diff --git a/app/main/views/index.py b/app/main/views/index.py index 80646ac66..4478f225c 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -278,6 +278,13 @@ def guidance_index(): ) +@main.route("/contact") +def contact(): + return render_template( + "views/contact.html", + ) + + @main.route("/about") def about_notify(): return render_template( diff --git a/app/main/views/sub_navigation_dictionaries.py b/app/main/views/sub_navigation_dictionaries.py index 603094cd1..16991297a 100644 --- a/app/main/views/sub_navigation_dictionaries.py +++ b/app/main/views/sub_navigation_dictionaries.py @@ -114,4 +114,8 @@ def about_notify_nav(): }, ], }, + { + "name": "Contact", + "link": "main.contact", + }, ] diff --git a/app/templates/views/contact.html b/app/templates/views/contact.html new file mode 100644 index 000000000..a2cd4f9c7 --- /dev/null +++ b/app/templates/views/contact.html @@ -0,0 +1,25 @@ +{% extends "base.html" %} + +{% set page_title = "Contact" %} + +{% block per_page_title %}{{page_title}}{% endblock %} + +{% block content_column_content %} +
+

{{page_title}}

+

Is your organization interested in using Notify.gov? Find more information at Join + Notify or contact us at tts-notify@gsa.gov.

+

You can expect a response within one business day.

+
+
+
+

If you are a current Notify.gov partner and have technical issues or questions, we are available at notify-support@gsa.gov

+
+
+
+
+{% endblock %} diff --git a/tests/app/test_navigation.py b/tests/app/test_navigation.py index f469f2586..a7a19b567 100644 --- a/tests/app/test_navigation.py +++ b/tests/app/test_navigation.py @@ -62,6 +62,7 @@ EXCLUDED_ENDPOINTS = tuple( "conversation_reply", "conversation_reply_with_template", "conversation_updates", + "contact", "copy_template", "count_content_length", "create_and_send_messages",