Files
notifications-admin/app/templates/views/support/index.html

51 lines
1.9 KiB
HTML
Raw Normal View History

{% extends "withoutnav_template.html" %}
{% from "components/page-footer.html" import page_footer %}
{% from "components/form.html" import form_wrapper %}
{% block per_page_title %}
2022-11-01 15:27:29 -04:00
Contact us
{% endblock %}
{% block maincolumn_content %}
<h1 class="font-body-2xl margin-bottom-3">Contact us</h1>
2022-11-01 15:27:29 -04:00
<p>We are available at <a class="govuk-link govuk-link--no-visited-state"" href="mailto:notify-support@gsa.gov">notify-support@gsa.gov</a>.</p>
<p>You can expect a response within one business day.</p>
2022-11-01 15:27:29 -04:00
<!-- <p>Notify.gov provides 24-hour online support.</p> -->
2022-11-01 15:27:29 -04:00
<!-- {% call form_wrapper() %}
{% if current_user.is_authenticated %}
{{ form.support_type }}
{% else %}
<p>
What do you need help with?
</p>
{{ form.who }}
{% endif %}
{{ page_footer('Continue') }}
{% endcall %}
<div class="govuk-grid-row">
<div class="govuk-grid-column-two-thirds">
<h2 class="font-body-lg">Office hours</h2>
<p>Our office hours are 9:30am to 5:30pm, Monday to Friday.</p>
<p>When you report a problem in office hours, well aim to read it within 30 minutes and reply within one working day.</p>
<h2 class="font-body-lg">Out-of-hours</h2>
<p>Outside office hours, response times depend on whether youre reporting an emergency.</p>
<p>If its an emergency, well reply within 30 minutes and update you every hour until the problems fixed.</p>
<p>If your problem is not an emergency, well reply within one working day.</p>
<p>A problem is only classed as an emergency if you have a live service and:</p>
<ul class="list list-bullet">
<li>nobody on your team can sign in</li>
<li>a technical difficulties error appears when you try to upload a file</li>
<li>a 500 response code appears when you try to send messages using the API</li>
</ul>
</div>
2022-11-01 15:27:29 -04:00
</div> -->
{% endblock %}