HEX
Server: nginx/1.28.1
System: Linux 10-41-63-61 6.8.0-31-generic #31-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 20 00:40:06 UTC 2024 x86_64
User: www (1001)
PHP: 7.4.33
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/wwwshoopermcom/application/views/auth/reset_password.php
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>
<!-- Wrapper -->
<div id="wrapper">
	<div class="container">
		<div class="auth-container">
			<div class="auth-box">
				<div class="row">
					<div class="col-12">
						<h1 class="title"><?php echo trans("reset_password"); ?></h1>
						<!-- form start -->
						<?php echo form_open('reset-password-post', ['id' => 'form_validate']); ?>
						<!-- include message block -->
						<?php $this->load->view('partials/_messages'); ?>
						<?php if (!empty($user)): ?>
							<input type="hidden" name="token" value="<?php echo $user->token; ?>">
						<?php endif; ?>
						<?php if (!empty($success)): ?>
							<div class="form-group m-t-30">
								<a href="<?php echo lang_base_url(); ?>" class="btn btn-md btn-custom btn-block"><?php echo trans("goto_home"); ?></a>
							</div>
						<?php else: ?>
							<div class="form-group">
								<label><?php echo trans("new_password"); ?></label>
								<input type="password" name="password" class="form-control form-input" value="<?php echo old("password"); ?>" placeholder="<?php echo trans("new_password"); ?>" minlength="4" maxlength="255" required>
							</div>
							<div class="form-group m-b-30">
								<label><?php echo trans("password_confirm"); ?></label>
								<input type="password" name="password_confirm" class="form-control form-input" value="<?php echo old("password_confirm"); ?>" placeholder="<?php echo trans("password_confirm"); ?>" maxlength="255" required>
							</div>
							<div class="form-group">
								<button type="submit" class="btn btn-md btn-custom btn-block"><?php echo trans("submit"); ?></button>
							</div>
						<?php endif; ?>
						<?php echo form_close(); ?>
						<!-- form end -->
					</div>
				</div>
			</div>
		</div>
	</div>
</div>
<!-- Wrapper End-->