| 1 |
<?php if( ! defined( "ABSPATH" ) ) exit(); ?> |
| 2 |
|
| 3 |
<input type="hidden" name="wpfaction" value="authorization_settings_save"> |
| 4 |
|
| 5 |
<?php WPF()->settings->header( 'authorization' ); ?> |
| 6 |
|
| 7 |
<?php |
| 8 |
WPF()->settings->form_field( 'authorization', 'user_register' ); |
| 9 |
WPF()->settings->form_field( 'authorization', 'user_register_email_confirm' ); |
| 10 |
WPF()->settings->form_field( 'authorization', 'manually_approval' ); |
| 11 |
WPF()->settings->form_field( 'authorization', 'manually_approval_contact_form' ); |
| 12 |
WPF()->settings->form_field( 'authorization', 'role_synch' ); |
| 13 |
WPF()->settings->form_field( 'authorization', 'user_delete_method' ); |
| 14 |
WPF()->settings->form_field( 'authorization', 'send_email_after_user_delete' ); |
| 15 |
WPF()->settings->form_field( 'authorization', 'use_our_register_url' ); |
| 16 |
WPF()->settings->form_field( 'authorization', 'use_our_login_url' ); |
| 17 |
WPF()->settings->form_field( 'authorization', 'use_our_lostpassword_url' ); |
| 18 |
WPF()->settings->form_field( 'authorization', 'custom_auth_urls' ); |
| 19 |
WPF()->settings->form_field( 'authorization', 'custom_redirect_urls' ); |
| 20 |
?> |
| 21 |
|