File: /home/h340499/public_html/wp-content/plugins/learnpress/templates/global/form-register.php
<?php
/**
* Template for displaying global login form.
*
* This template can be overridden by copying it to yourtheme/learnpress/global/form-register.php.
*
* @author ThimPress
* @package Learnpress/Templates
* @version 4.0.0
*/
defined( 'ABSPATH' ) || exit();
?>
<div class="learn-press-form-register learn-press-form">
<h3><?php echo esc_html_x( 'Register', 'register-heading', 'learnpress' ); ?></h3>
<?php do_action( 'learn-press/before-form-register' ); ?>
<form name="learn-press-register" method="post" action="">
<ul class="form-fields">
<?php do_action( 'learn-press/before-form-register-fields' ); ?>
<li class="form-field">
<label for="reg_email"><?php esc_html_e( 'Email address', 'learnpress' ); ?> <span class="required">*</span></label>
<input id ="reg_email" name="reg_email" type="text" placeholder="<?php esc_attr_e( 'Email', 'learnpress' ); ?>" autocomplete="email" value="<?php echo esc_attr( LP_Helper::sanitize_params_submitted( $_POST['reg_email'] ?? '' ) ); ?>">
</li>
<li class="form-field">
<label for="reg_username"><?php esc_html_e( 'Username', 'learnpress' ); ?> <span class="required">*</span></label>
<input id ="reg_username" name="reg_username" type="text" placeholder="<?php esc_attr_e( 'Username', 'learnpress' ); ?>" autocomplete="username" value="<?php echo esc_attr( LP_Helper::sanitize_params_submitted( $_POST['reg_username'] ?? '' ) ); ?>">
</li>
<li class="form-field">
<label for="reg_password"><?php esc_html_e( 'Password', 'learnpress' ); ?> <span class="required">*</span></label>
<input id ="reg_password" name="reg_password" type="password" placeholder="<?php esc_attr_e( 'Password', 'learnpress' ); ?>" autocomplete="new-password">
</li>
<li class="form-field">
<label for="reg_password2"><?php esc_html_e( 'Confirm Password', 'learnpress' ); ?> <span class="required">*</span></label>
<input id ="reg_password2" name="reg_password2" type="password" placeholder="<?php esc_attr_e( 'Password', 'learnpress' ); ?>" autocomplete="off">
</li>
<?php do_action( 'learn-press/after-form-register-fields' ); ?>
</ul>
<?php
do_action( 'register_form' );
do_action( 'login_enqueue_scripts' );
?>
<p>
<?php wp_nonce_field( 'learn-press-register', 'learn-press-register-nonce' ); ?>
<button type="submit"><?php esc_html_e( 'Register', 'learnpress' ); ?></button>
</p>
</form>
<?php do_action( 'learn-press/after-form-register' ); ?>
</div>