| Server IP : 3.111.61.48 / Your IP : 216.73.216.67 Web Server : Apache System : Linux ip-10-0-5-176 6.8.0-1057-aws #60~22.04.1-Ubuntu SMP Wed May 27 08:16:59 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.2.31 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/vhost/itms.arukustech.com/public/ |
Upload File : |
<?php
$email = $_GET['email'] ?? '';
$msg = $_GET['msg'] ?? '';
?>
<!DOCTYPE html>
<html>
<head>
<title>Reset Password</title>
<link rel="stylesheet" href="/assets/css/bootstrap.min.css">
</head>
<body class="bg-light">
<div class="container" style="max-width:420px;margin-top:80px;">
<div class="card shadow">
<div class="card-body">
<h4 class="text-center">Reset Password</h4>
<?php if ($msg): ?>
<div class="alert alert-danger"><?= htmlspecialchars($msg) ?></div>
<?php endif; ?>
<form method="POST" action="/api/reset_password.php">
<input type="hidden" name="email" value="<?= htmlspecialchars($email) ?>">
<div class="mb-3">
<label>OTP</label>
<input type="text" name="otp" required class="form-control">
</div>
<div class="mb-3">
<label>New Password</label>
<input type="password" name="password" required class="form-control">
</div>
<button class="btn btn-success w-100">
Reset Password
</button>
</form>
</div>
</div>
</div>
</body>
</html>