| 1 |
<?php |
| 2 |
|
| 3 |
// Do not allow the file to be called directly. |
| 4 |
if ( ! defined( 'ABSPATH' ) ) { |
| 5 |
exit; |
| 6 |
} |
| 7 |
?> |
| 8 |
<div class="patchstack-font"> |
| 9 |
<form class="patchstack-form-wrap" method="post" action="<?php echo esc_attr( $form_action ); ?>"> |
| 10 |
<input type="hidden" value="<?php echo wp_create_nonce( 'patchstack-option-page' ); ?>" name="PatchstackNonce"> |
| 11 |
<input type="hidden" value="patchstack_login_settings_group" name="option_page"> |
| 12 |
<?php |
| 13 |
do_settings_sections( 'patchstack_login_settings' ); |
| 14 |
settings_fields( 'patchstack_login_settings_group' ); |
| 15 |
submit_button( __( 'Save settings', 'patchstack' ) ); |
| 16 |
?> |
| 17 |
</form> |
| 18 |
</div> |
| 19 |
|