File: /home/h340499/public_html/wp-content/plugins/learnpress/templates/checkout/account-login.php
<?php
/**
* Template for displaying log in form.
*
* This template can be overridden by copying it to yourtheme/learnpress/checkout/form-login.php.
*
* @author ThimPress
* @package Learnpress/Templates
* @version 4.0.0
*/
defined( 'ABSPATH' ) || exit();
if ( is_user_logged_in() ) {
return;
}
$checked = 'checked="checked"';
if ( ! is_user_logged_in() && LearnPress::instance()->checkout()->is_enable_guest_checkout() ) {
$checked = '';
}
?>
<input type="radio" id="checkout-account-switch-to-login" <?php echo $checked ?> name="checkout-account-switch-form" value="login"/>
<div id="checkout-account-login" class="lp-checkout-block left">
<h4><?php esc_html_e( 'Sign in', 'learnpress' ); ?></h4>
<ul class="lp-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-checkout-account-login-fields' ); ?>
<!-- <input type="hidden" name="learn-press-checkout-nonce" value="--><?php //echo wp_create_nonce( 'learn-press-checkout-login' ); ?><!--">-->
<p class="lp-checkout-remember">
<label>
<input type="checkbox" name="rememberme"/>
<?php esc_html_e( 'Remember me', 'learnpress' ); ?>
</label>
<a class="lp-lost-password-link" href="<?php echo esc_url_raw( wp_lostpassword_url() ); ?>">
<?php esc_html_e( 'Lost password?', 'learnpress' ); ?>
</a>
</p>
<?php
// Add hook of WordPress
do_action( 'login_form' );
do_action( 'login_enqueue_scripts' );
?>
<p class="lp-checkout-sign-up-link">
<?php if ( LearnPress::instance()->checkout()->is_enable_register() ) : ?>
<?php esc_html_e( 'Don\'t have an account?', 'learnpress' ); ?>
<a href="javascript: void(0);">
<label for="checkout-account-switch-to-register"><?php echo esc_html_x( 'Sign up', 'checkout sign up link', 'learnpress' ); ?></label>
</a>.
<?php endif; ?>
<?php learn_press_get_template( 'checkout/guest-checkout-link' ); ?>
</p>
</div>