PluginProbe ʕ •ᴥ•ʔ
WP STAGING – WordPress Backup, Restore, Migration & Clone / 3.3.1
WP STAGING – WordPress Backup, Restore, Migration & Clone v3.3.1
4.9.1 4.9.0 4.8.1 trunk 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.10.0 3.2.0 3.3.1 3.3.2 3.3.3 3.4.1 3.4.3 3.5.0 3.6.0 3.7.1 3.8.0 3.8.1 3.8.2 3.8.3 3.8.4 3.8.5 3.8.6 3.8.7 3.9.0 3.9.1 3.9.2 3.9.3 3.9.4 4.0.0 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.2.0 4.2.1 4.3.0 4.3.1 4.3.2 4.4.0 4.5.0 4.6.0 4.7.0 4.7.1 4.7.2 4.7.3 4.8.0
wp-staging / Frontend / views / loginForm.php
wp-staging / Frontend / views Last commit date
footer.php 5 years ago header.php 3 years ago loginAfterRestore.php 2 years ago loginForm.php 2 years ago
loginForm.php
46 lines
1 <?php
2 /**
3 * Login form template
4 *
5 * @var bool $showNotice
6 * @var string $notice
7 * @var array $args
8 */
9 ?>
10 <main class="wp-staging-login" >
11 <div class="wpstg-text-center">
12 <img width="220" src="<?php echo esc_url(WPSTG_PLUGIN_URL . 'assets/img/logo.svg'); ?>" alt="WP Staging Login" />
13 </div>
14 <form class="wp-staging-form" name="<?php echo esc_attr($args['form_id']); ?>" id="<?php echo esc_attr($args['form_id']); ?>" action="" method="post">
15 <?php if ($showNotice) { ?>
16 <div class="wpstg-alert wpstg-alert-info wpstg-text-justify">
17 <p><?php echo esc_html($notice); ?></p>
18 </div>
19 <?php } ?>
20 <div class="form-group login-username">
21 <label for="<?php echo esc_attr($args['id_username']); ?>"><?php echo esc_html($args['label_username']); ?></label>
22 <input type="text" name="wpstg-username" id="<?php echo esc_attr($args['id_username']); ?>" class="input form-control" value="<?php echo esc_attr($args['value_username']); ?>" size="20" />
23 </div>
24 <div class="form-group login-password">
25 <label for="<?php echo esc_attr($args['id_password']); ?>"><?php echo esc_html($args['label_password']); ?></label>
26 <input type="password" name="wpstg-pass" id="<?php echo esc_attr($args['id_password']); ?>" class="input form-control" value="" size="20" />
27 </div>
28
29 <?php if ($args['remember']) { ?>
30 <div class="form-group login-remember"><label><input name="rememberme" type="checkbox" id="<?php echo esc_attr($args['id_remember']); ?>" value="forever"<?php echo ( $args['value_remember'] ? ' checked="checked"' : '' ); ?> /> <span><?php echo esc_html($args['label_remember']); ?></span></label></div>
31 <?php } ?>
32
33 <div class="login-submit">
34 <button type="submit" name="wpstg-submit" id="<?php echo esc_attr($args['id_submit']); ?>" class="btn" value="<?php echo esc_attr($args['label_log_in']); ?>"><?php esc_html_e('Login', 'wp-staging') ?></button>
35 <input type="hidden" name="redirect_to" value="<?php echo esc_url($args['redirect']); ?>" />
36 </div>
37 <div class="password-lost">
38 <a href="<?php echo esc_url($args['lost_password_url']); ?>"><?php esc_html_e('Lost your password?', 'wp-staging') ?></a>
39 </div>
40
41 <p class="error-msg">
42 <?php echo wp_kses_post($this->error); ?>
43 </p>
44 </form>
45 </main>
46