mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-07 08:38:26 -04:00
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:
11
app/templates/components/submit-form.html
Normal file
11
app/templates/components/submit-form.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user