mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
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
12 lines
443 B
HTML
12 lines
443 B
HTML
{% 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 %}
|