Subversion Repositories cheapmusic

Rev

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

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