diff --git a/app/main/views/index.py b/app/main/views/index.py index 974e29211..5e7bff008 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -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(): diff --git a/app/main/views/sub_navigation_dictionaries.py b/app/main/views/sub_navigation_dictionaries.py index b9fb7f8ae..56505ca6e 100644 --- a/app/main/views/sub_navigation_dictionaries.py +++ b/app/main/views/sub_navigation_dictionaries.py @@ -113,4 +113,8 @@ def about_notify_nav(): "name": "About notify", "link": "main.about_notify", }, + { + "name": "Contact", + "link": "main.contact", + }, ] diff --git a/app/templates/views/about/contact.html b/app/templates/views/about/contact.html new file mode 100644 index 000000000..8b4a00250 --- /dev/null +++ b/app/templates/views/about/contact.html @@ -0,0 +1,35 @@ +{% extends "base.html" %} + +{% set page_title = "Contact" %} + +{% block per_page_title %} +{{page_title}} +{% endblock %} + +{% block content_column_content %} + +
+

{{page_title}}

+

Notify is designed to be easy to use.

+ +

If you have technical issues or questions, we are available at notify-support@gsa.gov.

+

You can expect a response within one business day.

+
+
+
+

For partnership inquiries see, Join Notify or contact us at
tts-notify@gsa.gov.

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