Subversion Repositories cheapmusic

Rev

Rev 116 | Rev 122 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
25 - 1
<?php
31 - 2
// Include Session Handling
65 - 3
require_once ('includes/session.php');
31 - 4
 
25 - 5
// Include config & login validate file
6
require_once 'includes/validateUser.php';
7
?>
8
<!DOCTYPE html>
9
<html lang="en-US">
10
<head>
11
	<!--head-->
12
	<?php include_once 'elements/head.php'; ?>
13
	<!--//head-->
14
</head>
15
<body>
43 - 16
<div class="main">
25 - 17
    <!--header-->
18
    <?php include_once 'elements/header.php'; ?>
19
    <!--//header-->
20
 
21
    <!--main-->
22
	<div class="main-content">
73 - 23
        <div class="wrapper-frm bg-light text-dark border shadow text-center">
24
            <div>
107 - 25
                <h1>Reset Account Password</h1>
73 - 26
            </div>
25 - 27
            <div class="top">
73 - 28
                <?php echo !empty($statusMsg) ? '<p class="status-msg ' . $statusMsgType . '">' . $statusMsg . '</p>' : ''; ?>
25 - 29
                <form action="<?php echo BASE_URL; ?>userAccount.php" method="post">
119 - 30
                    <input id="emailfieldHidden" type="text" value="<?php echo $userData['email'] ?>" autocomplete="username" />
25 - 31
                    <div class="frm-input">
116 - 32
                        <input type="password" name="password" class="pass-in" placeholder="Password" aria-label="New Password" required="" autocomplete="new-password" />
25 - 33
                    </div>
73 - 34
                    <div class="frm-input">
116 - 35
                        <input type="password" name="confirm_password" class="pass-in" placeholder="Confirm password" aria-label="Confirm Password" required="" autocomplete="new-password" />
25 - 36
                    </div>
37
                    <div class="frm-btn">
116 - 38
                         <input type="hidden" name="fp_code" value="<?php echo $_REQUEST['fp_code']; ?>" />
39
                         <input class="btn btn-success" type="submit" name="resetSubmit" value="Reset Password" />
73 - 40
                     </div>
25 - 41
                </form>
42
            </div>
43
            <div class="bottom">
30 - 44
                <p>Don't Want to Reset? <a href="<?php echo BASE_URL; ?>index.php">Sign In</a></p>
25 - 45
            </div>
73 - 46
        </div>
25 - 47
	</div>
48
	<!--//main-->
49
 
50
	<!--footer-->
51
	<?php include_once 'elements/footer.php'; ?>
52
	<!--//footer-->
53
</div>
54
</body>
26 - 55
</html>