mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-03-02 16:31:31 -05:00
We don’t have letters yet. No point in someone setting up an account hoping they can send letters.
29 lines
689 B
HTML
29 lines
689 B
HTML
{% extends "withoutnav_template.html" %}
|
||
|
||
{% block page_title %}
|
||
GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<div class="grid-row">
|
||
<div class="column-two-thirds">
|
||
<h1 class="heading-xlarge">GOV.UK Notify</h1>
|
||
<p>
|
||
Making it easy to send text messages and emails to your users.
|
||
</p>
|
||
<p>
|
||
If you work for a UK government department or agency you can try it now.
|
||
</p>
|
||
<p>
|
||
<a class="button" href="{{ url_for('.register' )}}" role="button">Set up an account</a>
|
||
</p>
|
||
<p>
|
||
If you’ve used GOV.UK Notify before, <a href="{{ url_for('.sign_in' )}}">sign in to your account</a>.
|
||
</p>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
{% endblock %}
|