2018-11-01 16:02:43 +00:00
2016-01-07 12:29:56 +00:00
{% extends "withnav_template.html" %}
2019-04-29 11:44:05 +01:00
{% from "components/page-header.html" import page_header %}
2016-01-07 20:11:22 +00:00
{% from "components/page-footer.html" import page_footer %}
2018-09-19 12:39:36 +01:00
{% from "components/form.html" import form_wrapper %}
2023-08-30 11:07:38 -04:00
{% from "components/components/back-link/macro.njk" import usaBackLink %}
2016-01-07 12:29:56 +00:00
2017-02-13 10:45:15 +00:00
{% block service_page_title %}
Change your service name
2016-01-07 12:29:56 +00:00
{% endblock %}
2021-07-30 18:23:12 +01:00
{% block backLink %}
2023-08-30 11:07:38 -04:00
{{ usaBackLink({ "href": url_for('main.service_settings', service_id=current_service.id) }) }}
2021-07-30 18:23:12 +01:00
{% endblock %}
2016-01-07 12:29:56 +00:00
{% block maincolumn_content %}
2021-07-30 18:23:12 +01:00
{{ page_header('Change your service name') }}
2016-01-08 17:17:34 +00:00
2023-08-25 11:49:13 -04:00
< p class = "usa-body" > Your service name should tell users what the message is about as well as who it’ s from.< / p >
2021-09-10 15:15:22 +01:00
2023-08-25 11:49:13 -04:00
< p class = "usa-body" > You should only use an acronym or initialism if your users are already familiar with it.< / p >
2021-09-10 15:15:22 +01:00
2023-07-21 08:24:10 -07:00
< div >
2018-01-11 17:33:04 +00:00
{% if current_service.prefix_sms %}
2023-07-21 08:24:10 -07:00
2023-08-25 11:49:13 -04:00
< p class = "usa-body" > Users will see your service name at the start of every text message< / p >
2018-01-11 17:33:04 +00:00
{% else %}
2023-08-25 11:49:13 -04:00
< p class = "usa-body" > Users will see your service name as your email sender name.< / p >
2018-01-11 17:33:04 +00:00
{% endif %}
2023-07-21 08:24:10 -07:00
2016-01-07 16:24:43 +00:00
< / div >
2023-08-25 11:49:13 -04:00
< p class = "usa-body" > The service name you enter here will appear at the beginning of each text message, unless you turn off this off in Settings > Start text message with service name.
2023-07-21 08:24:10 -07:00
2016-01-07 12:29:56 +00:00
2018-09-19 12:39:36 +01:00
{% call form_wrapper() %}
2020-07-14 16:51:11 +01:00
{{ form.name }}
2019-04-29 11:44:05 +01:00
{{ page_footer('Save') }}
2018-09-19 12:39:36 +01:00
{% endcall %}
2016-08-24 15:31:49 +01:00
2016-01-07 12:29:56 +00:00
{% endblock %}