Files
notifications-admin/app/templates/views/add-service.html
T

30 lines
607 B
HTML
Raw Normal View History

{% extends "withoutnav_template.html" %}
2016-01-11 13:15:10 +00:00
{% from "components/textbox.html" import textbox %}
2016-01-18 10:47:53 +00:00
{% from "components/page-footer.html" import page_footer %}
2017-02-13 10:45:15 +00:00
{% block per_page_title %}
{{ heading }}
{% endblock %}
{% block maincolumn_content %}
<div class="grid-row">
2016-01-18 10:47:53 +00:00
<div class="column-two-thirds">
2015-12-15 08:20:25 +00:00
<h1 class="heading-large">
When people receive notifications, who should they be from?
2016-01-18 10:47:53 +00:00
</h1>
2016-01-18 10:47:53 +00:00
<form autocomplete="off" method="post">
2016-02-04 12:20:24 +00:00
{{ textbox(form.name, hint="You can change this later") }}
2016-02-26 10:46:49 +00:00
{{ page_footer('Add service') }}
2016-01-18 10:47:53 +00:00
</form>
</div>
</div>
{% endblock %}