Subversion Repositories cheapmusic

Rev

Rev 43 | Rev 65 | 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
3
require_once('includes/session.php');
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">
57 - 23
          <div class="wrapper-frm bg-light text-dark border shadow text-center">
24
            <div>
25
                <h2>Recover Account Password</h2>
26
            </div>
25 - 27
            <div class="top">
28
				<?php echo !empty($statusMsg)?'<p class="status-msg '.$statusMsgType.'">'.$statusMsg.'</p>':''; ?>
29
 
30
				<?php if(isset($_GET['frmDis']) && $_GET['frmDis'] == 0){ ?>
31
					<h4>Didn’t receive the email? <a href="<?php echo BASE_URL; ?>forgotPassword.php">Request reset link</a></h4>
32
				<?php }else{ ?>
33
                <form action="<?php echo BASE_URL; ?>userAccount.php" method="post">
34
                    <div class="frm-input">
35
                        <input type="email" name="email" class="email-in" placeholder="Email" required="">
36
                    </div>
37
                    <div class="frm-btn">
57 - 38
                        <button class="btn btn-success" type="submit" name="forgotSubmit" value="Continue">Continue</button>
25 - 39
                    </div>
40
                </form>
41
				<?php } ?>
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>
57 - 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>