| 1 |
<?php if( ! defined( "ABSPATH" ) ) exit() ?> |
| 2 |
|
| 3 |
<input type="hidden" name="wpfaction" value="recaptcha_settings_save"> |
| 4 |
|
| 5 |
<?php |
| 6 |
WPF()->settings->header( 'recaptcha' ); |
| 7 |
WPF()->settings->form_field( 'recaptcha', 'site_key_secret_key' ); |
| 8 |
WPF()->settings->form_field( 'recaptcha', 'theme' ); |
| 9 |
WPF()->settings->form_field( 'recaptcha', 'topic_editor' ); |
| 10 |
WPF()->settings->form_field( 'recaptcha', 'post_editor' ); |
| 11 |
WPF()->settings->form_field( 'recaptcha', 'wpf_login_form' ); |
| 12 |
WPF()->settings->form_field( 'recaptcha', 'wpf_reg_form' ); |
| 13 |
WPF()->settings->form_field( 'recaptcha', 'wpf_lostpass_form' ); |
| 14 |
WPF()->settings->form_field( 'recaptcha', 'login_form' ); |
| 15 |
WPF()->settings->form_field( 'recaptcha', 'reg_form' ); |
| 16 |
WPF()->settings->form_field( 'recaptcha', 'lostpass_form' ); |
| 17 |
|