Files
notifications-admin/app/templates/views/signedout.html
2025-11-05 09:24:31 -05:00

76 lines
3.2 KiB
HTML

{% extends "base.html" %} {% from "components/components/button/macro.njk"
import usaButton %} {% block meta %}
<meta
name="description"
content="Notify.gov lets you send text messages to your users. Try it now if you work in federal, state, or local government."
/>
{% endblock %}
{% block pageTitle %} Notify.gov
{% if is_api_down %} - There's currently a technical issue {% endif %}
{% endblock %}
{% block main %}
{% block beforeContent %}{% endblock %}
<main id="main-content" role="main">
{% block content %}
{% if is_api_down %}
{% include "error/technical_difficulties.html" %}
{% else %}
<section class="usa-section--dark usa-hero usa-prose" aria-label="Introduction">
<div class="grid-container">
<div class="grid-row">
<div class="text-center grid-col-12 padding-y-4">
<h1 class="font-sans-2xl usa-hero__heading margin-bottom-2">
Sunsetting Notify.gov
</h1>
<p class="font-sans-lg margin-0">
This beta product is no longer in service as of June 9, 2025.
</p>
</div>
</div>
</div>
</section>
<section class="usa-section usa-prose" aria-label="Introduction">
<div class="grid-container">
<div class="grid-row grid-gap display-flex flex-align-center">
<div class="desktop:grid-col-8 tablet:grid-col-12">
<h2 class="font-body-xl">
Text messaging services
</h2>
<p class="usa-body">
Though the Notify.gov service is no longer available, government programs can continue to explore text messaging services.
</p>
<p class="usa-body">Commercial messaging providers may support government use cases. For agencies with the resources to set up and support it, <a href="https://github.com/GSA/notifications-api" class="usa-link">the notifications service codebase</a> that runs Notify.gov is open source and can be reused.</p>
</div>
<div
class="desktop:grid-col-3 grid-offset-1 desktop:display-block display-none margin-x-5"
>
<img
src="{{ asset_url('images/messaging-devices.svg') }}"
alt="Illustration showing multiple devices including mobile phones and messaging interfaces representing government text messaging communication"
width="305"
height="304"
/>
</div>
</div>
</div>
</section>
<section class="bg-gray-10 usa-section usa-prose" aria-label="Thank you message to partners">
<div class="grid-container">
<div class="grid-row flex-justify-center">
<div class="text-center grid-col-8">
<h2 class="font-body-xl text-primary margin-bottom-2">
To our partners
</h2>
<p class="usa-body margin-0">
Thank you to our users and partners for their support, participation, and contributions in developing Notify.gov.
</p>
</div>
</div>
</div>
</section>
{% endif %}
{% endblock %}
</main>
{% endblock %}