mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-28 03:39:29 -04:00
# Conflicts: # app/templates/components/components/footer/_footer.scss # app/templates/components/components/hint/_hint.scss # app/templates/views/service-settings/data-retention.html # app/templates/views/service-settings/sms-senders.html # app/templates/views/two-factor-webauthn.html # app/templates/views/user-profile/security-keys.html
35 lines
1.0 KiB
HTML
35 lines
1.0 KiB
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/page-header.html" import page_header %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
{% from "components/components/back-link/macro.njk" import usaBackLink %}
|
|
|
|
{% block service_page_title %}
|
|
Send international text messages
|
|
{% endblock %}
|
|
|
|
{% block backLink %}
|
|
{{ usaBackLink({ "href": url_for('main.service_settings', service_id=current_service.id) }) }}
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<div class="grid-row">
|
|
<div class="grid-col-10">
|
|
{{ page_header('Send international text messages') }}
|
|
<p>
|
|
Messages to international mobile numbers are charged at 1, 2, or
|
|
3 times the cost of messages to US mobile numbers.</p>
|
|
<p>
|
|
See <a class="usa-link" href="{{ url_for(".pricing") }}">pricing</a> for the list
|
|
of rates.
|
|
</p>
|
|
{% call form_wrapper() %}
|
|
{{ form.enabled }}
|
|
{{ page_footer('Save') }}
|
|
{% endcall %}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|