Subversion Repositories cheapmusic

Rev

Rev 25 | Rev 30 | 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>Recover Account Password</h2>
22
            <div class="top">
23
				<?php echo !empty($statusMsg)?'<p class="status-msg '.$statusMsgType.'">'.$statusMsg.'</p>':''; ?>
24
 
25
				<?php if(isset($_GET['frmDis']) && $_GET['frmDis'] == 0){ ?>
26
					<h4>Didn’t receive the email? <a href="<?php echo BASE_URL; ?>forgotPassword.php">Request reset link</a></h4>
27
				<?php }else{ ?>
28
                <form action="<?php echo BASE_URL; ?>userAccount.php" method="post">
29
                    <div class="frm-input">
30
                        <input type="email" name="email" class="email-in" placeholder="Email" required="">
31
                    </div>
32
                    <div class="frm-btn">
33
                        <input type="submit" name="forgotSubmit" value="Continue">
34
                    </div>
35
                </form>
36
				<?php } ?>
37
            </div>
38
            <div class="bottom">
26 - 39
                <p>Don't Want to Reset? <a href="<?php echo BASE_URL; ?>login.php">Sign In</a></p>
25 - 40
            </div>
41
		</div>
42
	</div>
43
	<!--//main-->
44
 
45
	<!--footer-->
46
	<?php include_once 'elements/footer.php'; ?>
47
	<!--//footer-->
48
</div>
49
</body>
26 - 50
</html>