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-edit-account.php
<?php
/**
 * Edit account form
 *
 * @author 		WooThemes
 * @package 	WooCommerce/Templates
 * @version     2.2.7
 */

if ( ! defined( 'ABSPATH' ) ) {
    exit;
}
global $current_user;

$user = $current_user;
?>

<?php wc_print_notices(); ?>
<div class="small-12 small-centered medium-8 large-6 columns">
	<div class="smalltitle text-center"><?php _e( 'Edit Account', 'north' ); ?></div>
	<form action="" method="post">
		<?php do_action( 'woocommerce_edit_account_form_start' ); ?>
		<div class="row">
			<div class="small-12 medium-6 columns">
				<label for="account_first_name"><?php _e( 'First name', 'north' ); ?> <span class="required">*</span></label>
				<input type="text" class="input-text full" name="account_first_name" id="account_first_name" value="<?php echo esc_attr( $user->first_name ); ?>" />
			</div>
			<div class="small-12 medium-6 columns">
				<label for="account_last_name"><?php _e( 'Last name', 'north' ); ?> <span class="required">*</span></label>
				<input type="text" class="input-text full" name="account_last_name" id="account_last_name" value="<?php echo esc_attr( $user->last_name ); ?>" />
			</div>
			<div class="small-12 columns">
				<label for="account_email"><?php _e( 'Email address', 'north' ); ?> <span class="required">*</span></label>
				<input type="email" class="input-text full" name="account_email" id="account_email" value="<?php echo esc_attr( $user->user_email ); ?>" />
			</div>
	
			<div class="small-12 columns">
					<label for="password_current"><?php _e( 'Current Password <small>(leave blank to leave unchanged)</small>', 'north' ); ?></label>
					<input type="password" class="input-text full" name="password_current" id="password_current" />
			</div>
			<div class="small-12 medium-6 columns">
					<label for="password_1"><?php _e( 'New Password <small>(leave blank to leave unchanged)</small>', 'north' ); ?></label>
					<input type="password" class="input-text full" name="password_1" id="password_1" />
			</div>
			<div class="small-12 medium-6 columns">
					<label for="password_2"><?php _e( 'Confirm New Password', 'north' ); ?></label>
					<input type="password" class="input-text full" name="password_2" id="password_2" />
			</div>
			<?php do_action( 'woocommerce_edit_account_form' ); ?>
			<div class="small-12 columns text-center">
				<?php wp_nonce_field( 'save_account_details' ); ?>
				<p><input type="submit" class="button" name="save_account_details" value="<?php _e( 'Save changes', 'north' ); ?>" /></p>
				<input type="hidden" name="action" value="save_account_details" />
				
				
			</div>
		</div>
		<?php do_action( 'woocommerce_edit_account_form_end' ); ?>
	</form>
</div>