1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?php ! defined( 'ABSPATH' ) && exit(); ?><div class="totalpoll-settings-item "> <div class="totalpoll-settings-field"> <label> <input type="checkbox" name="" ng-model="$ctrl.options.services.recaptcha.enabled" > <?php _e( 'reCaptcha by Google', 'totalpoll' ); ?> </label> </div> </div> <div class="totalpoll-settings-item-advanced" ng-class="{active: $ctrl.options.services.recaptcha.enabled}"> <div class="totalpoll-settings-item"> <div class="totalpoll-settings-field"> <label class="totalpoll-settings-field-label"> <?php _e( 'Site key', 'totalpoll' ); ?> </label> <input type="text" class="totalpoll-settings-field-input widefat" ng-model="$ctrl.options.services.recaptcha.key"> </div> </div> <div class="totalpoll-settings-item"> <div class="totalpoll-settings-field"> <label class="totalpoll-settings-field-label"> <?php _e( 'Site secret', 'totalpoll' ); ?> </label> <input type="text" class="totalpoll-settings-field-input widefat" ng-model="$ctrl.options.services.recaptcha.secret"> </div> </div> <div class="totalpoll-settings-item"> <div class="totalpoll-settings-field"> <label> <input type="checkbox" name="" ng-model="$ctrl.options.services.recaptcha.invisible"> <?php _e( 'Enable invisible captcha.', 'totalpoll' ); ?> </label> </div> </div> </div>
|