| 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 36... |
Line 33... |
| 36 |
<?php echo !empty($statusMsg) ? '<p class="status-msg ' . $statusMsgType . '">' . $statusMsg . '</p>' : ''; ?>
|
33 |
<?php echo !empty($statusMsg) ? '<p class="status-msg ' . $statusMsgType . '">' . $statusMsg . '</p>' : ''; ?>
|
| 37 |
<form action="<?php echo BASE_URL; ?>userAccount.php" method="post">
|
34 |
<form action="<?php echo BASE_URL; ?>userAccount.php" method="post">
|
| 38 |
<input type="hidden" name="sessionTab" value="<?php if (isset($_POST['sessionTab'])) echo $_POST['sessionTab']; ?>" />
|
35 |
<input type="hidden" name="sessionTab" value="<?php if (isset($_POST['sessionTab'])) echo $_POST['sessionTab']; ?>" />
|
| 39 |
<input type="hidden" name="searchTerm" value="<?php if (isset($_POST['searchTerm'])) echo $_POST['searchTerm']; ?>" />
|
36 |
<input type="hidden" name="searchTerm" value="<?php if (isset($_POST['searchTerm'])) echo $_POST['searchTerm']; ?>" />
|
| 40 |
<?php if (!empty($userData['password'])) { ?>
|
37 |
<?php if (!empty($userData['password'])) { ?>
|
| 41 |
<input id="emailfield" type="text" value="<?php echo $userData['email'] ?>" autocomplete="username" />
|
38 |
<input id="emailfieldHidden" type="text" value="<?php echo $userData['email'] ?>" autocomplete="username" />
|
| 42 |
<div class="frm-input">
|
39 |
<div class="frm-input">
|
| 43 |
<input type="password" name="old_password" class="pass-in" placeholder="Current Password" aria-label="Current Password" required="" autocomplete="current-password" />
|
40 |
<input type="password" name="old_password" class="pass-in" placeholder="Current Password" aria-label="Current Password" required="" autocomplete="current-password" />
|
| 44 |
</div>
|
41 |
</div>
|
| 45 |
<?php
|
42 |
<?php
|
| 46 |
} ?>
|
43 |
} ?>
|