Rev 65 | Rev 116 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<?php
// Include Session Handling
require_once ('includes/session.php');
// Include config & login validate file
require_once 'includes/validateUser.php';
?>
<!DOCTYPE html>
<html lang="en-US">
<head>
<!--head-->
<?php include_once 'elements/head.php'; ?>
<!--//head-->
</head>
<body>
<div class="main">
<!--header-->
<?php include_once 'elements/header.php'; ?>
<!--//header-->
<!--main-->
<div class="main-content">
<div class="wrapper-frm bg-light text-dark border shadow text-center">
<div>
<h2>Reset Account Password</h2>
</div>
<div class="top">
<?php echo !empty($statusMsg) ? '<p class="status-msg ' . $statusMsgType . '">' . $statusMsg . '</p>' : ''; ?>
<form action="<?php echo BASE_URL; ?>userAccount.php" method="post">
<div class="frm-input">
<input type="password" name="password" class="pass-in" placeholder="Password" required="">
</div>
<div class="frm-input">
<input type="password" name="confirm_password" class="pass-in" placeholder="Confirm password" required="">
</div>
<div class="frm-btn">
<input type="hidden" name="fp_code" value="<?php echo $_REQUEST['fp_code']; ?>"/>
<input class="btn btn-success" type="submit" name="resetSubmit" value="Reset Password">
</div>
</form>
</div>
<div class="bottom">
<p>Don't Want to Reset? <a href="<?php echo BASE_URL; ?>index.php">Sign In</a></p>
</div>
</div>
</div>
<!--//main-->
<!--footer-->
<?php include_once 'elements/footer.php'; ?>
<!--//footer-->
</div>
</body>
</html>