| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/aecm.ihu.gr/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.1 */ 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' ); do_action( 'login_enqueue_scripts' ); ?> <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>