HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/shoetique/wp-content/themes/north-wp/woocommerce/myaccount/form-lost-password.php
<?php
/**
 * Lost password form
 *
 * @author  WooThemes
 * @package WooCommerce/Templates
 * @version 2.3.0
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

?>
<div class="my_woocommerce_page page-padding">
	<div class="custom_scroll">
		<div class="row" id="customer_login">
			<?php wc_print_notices();  ?>
			<div class="small-12 small-centered  medium-10 large-8 columns text-center">
				<?php if( 'lost_password' == $args['form'] ) : ?>
					<h3><?php echo apply_filters( 'woocommerce_lost_password_message', __( 'Lost your password? ','north' ) ); ?></h3>
				<?php else : ?>
					<h3><?php echo apply_filters( 'woocommerce_reset_password_message', __( 'Enter a new password below.','north') ); ?></h3>
				<?php endif; ?>
				
				<form method="post" class="row lost_reset_password">
					<div class="small-12 medium-8 small-centered columns">
					<?php	if( 'lost_password' == $args['form'] ) : ?>

						<p class="form-row form-row-first"><label for="user_login"><?php _e( 'Username or email','north' ); ?></label> <input class="input-text" type="text" name="user_login" id="user_login" /></p>

					<?php else : ?>

						<p class="form-row form-row-first">
							<label for="password_1"><?php _e( 'New password','north' ); ?> <span class="required">*</span></label>
							<input type="password" class="input-text" name="password_1" id="password_1" />
						</p>
						<p class="form-row form-row-last">
							<label for="password_2"><?php _e( 'Re-enter new password','north' ); ?> <span class="required">*</span></label>
							<input type="password" class="input-text" name="password_2" id="password_2" />
						</p>

						<input type="hidden" name="reset_key" value="<?php echo isset( $args['key'] ) ? $args['key'] : ''; ?>" />
						<input type="hidden" name="reset_login" value="<?php echo isset( $args['login'] ) ? $args['login'] : ''; ?>" />
					<?php endif; ?>

					<p class="form-row">
						<input type="hidden" name="wc_reset_password" value="true" />
						<input type="submit" class="button" value="<?php echo 'lost_password' == $args['form'] ? __( 'Reset Password','north' ) : __( 'Save','north' ); ?>" />
					</p>
					<?php wp_nonce_field( $args['form'] ); ?>
					</div>
				</form>
				</div>
		</div>
	</div>
</div>