Simplify check and send SMS page

This commit:
- removes the row numbering so it’s easier to scan the list of phone numbers
- adds subheadings for 'first three' and 'last three'
- puts the 'see all' link at the end
This commit is contained in:
Chris Hill-Scott
2015-12-11 17:25:04 +00:00
parent 262cbffad8
commit 7ac08e9a85
4 changed files with 33 additions and 21 deletions

View File

@@ -0,0 +1,11 @@
{% macro submit_form(button_text, back_link) %}
<div class="submit-form">
<form method="POST" enctype="multipart/form-data">
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
<input type="submit" class="button" value="{{ button_text }}" />
{% if back_link %}
<a class="submit-form-back-link" role="button" href="{{ back_link }}">Back</a>
{% endif %}
</form>
</div>
{% endmacro %}