File "password-options.php"
Full path: /home/bud/public_html/swamp/back-end/password-options.php
File size: 1.35 KB
MIME-type: text/x-php
Charset: utf-8
<?php
if ( ! defined( 'ABSPATH' ) ) {
die( 'You are not allowed to call this page directly.' );
}
?>
<p>
<label for="strong_pass_<?php echo esc_attr( $field['id'] ); ?>">
<input type="checkbox" id="strong_pass_<?php echo esc_attr( $field['id'] ); ?>" name="field_options[strong_pass_<?php echo esc_attr( $field['id'] ); ?>]" value="1" <?php checked( $field['strong_pass'], 1 ); ?> />
<?php esc_html_e( 'Require a strong password', 'formidable-pro' ); ?>
<span class="frm_help frm_icon_font frm_tooltip_icon" title="<?php esc_attr_e( 'A strong password is at least 8 characters long and includes a an uppercase letter, a lowercase letter, a number, and a character.', 'formidable-pro' ); ?>"></span>
</label>
</p>
<p>
<label for="strength_meter_<?php echo esc_attr( $field['id'] ); ?>">
<input type="checkbox" id="strength_meter_<?php echo esc_attr( $field['id'] ); ?>" name="field_options[strength_meter_<?php echo esc_attr( $field['id'] ); ?>]" value="1" <?php checked( $field['strength_meter'], 1 ); ?> />
<?php esc_html_e( 'Show password strength meter', 'formidable-pro' ); ?>
<span class="frm_help frm_icon_font frm_tooltip_icon" title="<?php esc_attr_e( 'Display a meter to the user showing the password requirements and strength of the typed password. This will only apply when the field is not within a Repeater.', 'formidable-pro' ); ?>"></span>
</label>
</p>