| Server IP : 172.67.147.195 / Your IP : 216.73.216.142 Web Server : Apache/2 System : Linux hosting8537.lvs 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : mienphi ( 1014) PHP Version : 8.2.14 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/mienphi/public_html/wp-content/plugins/learnpress/templates/global/ |
Upload File : |
<?php /** * Template for displaying template of login form. * * This template can be overridden by copying it to yourtheme/learnpress/global/form-login.php. * * @author ThimPress * @package Learnpress/Templates * @version 4.0.0 */ defined( 'ABSPATH' ) || exit(); ?> <div class="learn-press-form-login learn-press-form"> <h3><?php echo esc_html_x( 'Login', 'login-heading', 'learnpress' ); ?></h3> <?php do_action( 'learn-press/before-form-login' ); ?> <form name="learn-press-login" method="post" action=""> <?php do_action( 'learn-press/before-form-login-fields' ); ?> <ul class="form-fields"> <li class="form-field"> <label for="username"><?php esc_html_e( 'Username or email', 'learnpress' ); ?> <span class="required">*</span></label> <input type="text" name="username" id="username" placeholder="<?php esc_attr_e( 'Email or username', 'learnpress' ); ?>" autocomplete="username" /> </li> <li class="form-field"> <label for="password"><?php esc_html_e( 'Password', 'learnpress' ); ?> <span class="required">*</span></label> <input type="password" name="password" id="password" placeholder="<?php esc_attr_e( 'Password', 'learnpress' ); ?>" autocomplete="current-password" /> </li> </ul> <?php do_action( 'learn-press/after-form-login-fields' ); ?> <p> <label> <input type="checkbox" name="rememberme"/> <?php esc_html_e( 'Remember me', 'learnpress' ); ?> </label> </p> <?php do_action( 'login_form' ); ?> <p> <input type="hidden" name="learn-press-login-nonce" value="<?php echo wp_create_nonce( 'learn-press-login' ); ?>"> <button type="submit"><?php esc_html_e( 'Login', 'learnpress' ); ?></button> </p> <p> <a href="<?php echo wp_lostpassword_url(); ?>"><?php esc_html_e( 'Lost your password?', 'learnpress' ); ?></a> </p> </form> <?php do_action( 'learn-press/after-form-login' ); ?> </div>