| Line 8... |
Line 8... |
| 8 |
<!DOCTYPE html>
|
8 |
<!DOCTYPE html>
|
| 9 |
<html lang="en-US">
|
9 |
<html lang="en-US">
|
| 10 |
<head>
|
10 |
<head>
|
| 11 |
<!--head-->
|
11 |
<!--head-->
|
| 12 |
<?php include_once 'elements/head.php'; ?>
|
12 |
<?php include_once 'elements/head.php'; ?>
|
| 13 |
<style>
|
- |
|
| 14 |
#emailfield { display: none; }
|
- |
|
| 15 |
</style>
|
- |
|
| 16 |
<!--//head-->
|
13 |
<!--//head-->
|
| 17 |
</head>
|
14 |
</head>
|
| 18 |
<body>
|
15 |
<body>
|
| 19 |
<div class="main">
|
16 |
<div class="main">
|
| 20 |
<!--header-->
|
17 |
<!--header-->
|
| Line 28... |
Line 25... |
| 28 |
<h1>Reset Account Password</h1>
|
25 |
<h1>Reset Account Password</h1>
|
| 29 |
</div>
|
26 |
</div>
|
| 30 |
<div class="top">
|
27 |
<div class="top">
|
| 31 |
<?php echo !empty($statusMsg) ? '<p class="status-msg ' . $statusMsgType . '">' . $statusMsg . '</p>' : ''; ?>
|
28 |
<?php echo !empty($statusMsg) ? '<p class="status-msg ' . $statusMsgType . '">' . $statusMsg . '</p>' : ''; ?>
|
| 32 |
<form action="<?php echo BASE_URL; ?>userAccount.php" method="post">
|
29 |
<form action="<?php echo BASE_URL; ?>userAccount.php" method="post">
|
| 33 |
<input id="emailfield" type="text" value="<?php echo $userData['email'] ?>" autocomplete="username" />
|
30 |
<input id="emailfieldHidden" type="text" value="<?php echo $userData['email'] ?>" autocomplete="username" />
|
| 34 |
<div class="frm-input">
|
31 |
<div class="frm-input">
|
| 35 |
<input type="password" name="password" class="pass-in" placeholder="Password" aria-label="New Password" required="" autocomplete="new-password" />
|
32 |
<input type="password" name="password" class="pass-in" placeholder="Password" aria-label="New Password" required="" autocomplete="new-password" />
|
| 36 |
</div>
|
33 |
</div>
|
| 37 |
<div class="frm-input">
|
34 |
<div class="frm-input">
|
| 38 |
<input type="password" name="confirm_password" class="pass-in" placeholder="Confirm password" aria-label="Confirm Password" required="" autocomplete="new-password" />
|
35 |
<input type="password" name="confirm_password" class="pass-in" placeholder="Confirm password" aria-label="Confirm Password" required="" autocomplete="new-password" />
|