-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforgotpass.php
45 lines (43 loc) · 2.01 KB
/
forgotpass.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
include_once('core.php');
if (isset($_SESSION['userEmail'])) {
header('Location: /dashboard.php');
}
$pageTitle = 'Forgot Password';
include 'header.php';
?>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="form-example-wrap mg-t-30">
<div class="cmp-tb-hd cmp-int-hd">
<h2><?php echo $pageTitle ?? '';?></h2>
</div>
<form method="post">
<div class="form-example-int form-horizental">
<div class="form-group">
<div class="row">
<div class="col-lg-2 col-md-3 col-sm-3 col-xs-12">
<label class="hrzn-fm">Email Address</label>
</div>
<div class="col-lg-8 col-md-7 col-sm-7 col-xs-12">
<div class="nk-int-st">
<input type="text" name="email" class="form-control input-sm" placeholder="Enter Email" required>
</div>
</div>
</div>
</div>
</div>
<div class="form-example-int mg-t-15">
<div class="row">
<div class="col-lg-2 col-md-3 col-sm-3 col-xs-12">
</div>
<div class="col-lg-8 col-md-7 col-sm-7 col-xs-12">
<button class="btn btn-success notika-btn-success waves-effect">Send</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
<?php include 'footer.php';?>