login-backend.php
13 lines
| 1 | <?php /** @version 7.0.0 **/ ?> |
| 2 | |
| 3 | <?php if (defined('AAM_KEY')) { ?> |
| 4 | <p> |
| 5 | <label for="<?php echo esc_attr($this->get_field_id('login-title')); ?>"><?php echo __('Login Title', 'advanced-access-manager'); ?>: </label> |
| 6 | <input type="text" class="widefat" id="<?php echo esc_attr($this->get_field_id('login-title')); ?>" name="<?php echo esc_attr($this->get_field_name('login-title')); ?>" value="<?php echo esc_attr($instance['login-title']); ?>" /> |
| 7 | </p> |
| 8 | |
| 9 | <p> |
| 10 | <label for="<?php echo $this->get_field_id('user-title'); ?>"><?php echo __('Logged In Title', 'advanced-access-manager'); ?>: </label> |
| 11 | <input type="text" class="widefat" id="<?php echo esc_attr($this->get_field_id('user-title')); ?>" name="<?php echo esc_attr($this->get_field_name('user-title')); ?>" value="<?php echo esc_attr($instance['user-title']); ?>" /> |
| 12 | </p> |
| 13 | <?php } |