mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 02:42:26 -05:00
14 lines
422 B
HTML
14 lines
422 B
HTML
{% from "components/banner.html" import banner_wrapper %}
|
|
{% from "components/big-number.html" import big_number %}
|
|
|
|
{% call banner_wrapper(type="mode") %}
|
|
<div class="grid-row">
|
|
<div class="column-one-half">
|
|
Your service is in trial mode
|
|
</div>
|
|
<div class="column-one-half">
|
|
<a href="{{ url_for(".trial_mode") }}" class="banner-mode-action">Find out more</a>
|
|
</div>
|
|
</div>
|
|
{% endcall %}
|