mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-21 08:29:27 -04:00
Since we’re removing the write email/write text message calls to action from the tour, we should reintroduce them to the dashboard, for users who are unsure what they should do next.
17 lines
602 B
HTML
17 lines
602 B
HTML
{% from "components/banner.html" import banner_wrapper %}
|
|
|
|
<h2 class="heading-medium">Get started</h2>
|
|
|
|
<nav class="grid-row">
|
|
<div class="column-half">
|
|
{% call banner_wrapper(type="mode") %}
|
|
<a href="{{ url_for('.choose_template', service_id=current_service.id, template_type='email') }}">Write an email
|
|
{% endcall %}
|
|
</div>
|
|
<div class="column-half">
|
|
{% call banner_wrapper(type="mode") %}
|
|
<a href="{{ url_for('.choose_template', service_id=current_service.id, template_type='email') }}">Write a text message</a>
|
|
{% endcall %}
|
|
</div>
|
|
</nav>
|