| 1 |
<form method="post" style="margin: 15px;"> |
| 2 |
<h1>Enabled Gatewayes</h1> |
| 3 |
{% for gateway in files %} |
| 4 |
<div> |
| 5 |
<input {% if gateway in selected %} checked {% endif %} name='gateways[]' value="{{ gateway|escape('html_attr') }}" type='checkbox' id='{{ gateway|escape('html_attr') }}'> |
| 6 |
<label for='{{gateway|escape('html_attr')}}'>{{gateway|escape('html')}}</label> |
| 7 |
</div> |
| 8 |
{% endfor %} |
| 9 |
|
| 10 |
<?php wp_nonce_field( 'hyperpay-options'); ?> |
| 11 |
|
| 12 |
<input style="margin-top: 10px;" type="submit"> |
| 13 |
</form> |