-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathforgot.php
74 lines (52 loc) · 1.54 KB
/
forgot.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!doctype html>
<html class="no-js" lang="en">
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<?php
//include "db2\db2.php";
session_start();
if(isset($_SESSION["uid"])){
header("location:Customer_profile.php");
}
?>
<?php
include'header.php';
?>
<body>
<!--header area start-->
<!--offcanvas menu area start-->
<div class="off_canvars_overlay">
</div>
<?php
//include'top_menu_bar_login.php';
?>
<!--offcanvas menu area end-->
<?php
include'header_area_menu.php';
?>
<div class="container-fluid ">
<div class="row justify-content-center" >
<div class="col-md-4"></div>
<div class="col-md-4">
<h1 ><center><b>Forgotten Password</b></center></h1>
<hr>
<div id="forgt_back_message"></div>
<form method="post" onsubmit="return false">
<div class="row">
<div class="col-md-12">
<label for="email">Email</label>
<input type="text" id="email" name="email"class="form-control" required>
</div>
</div>
<p><br/></p>
<hr>
<div class="row" style="float:right;">
<div class="col-md-12">
<input value="submit" type="button" id="forgott" name="Submit" class="btn btn-success btn-lg">
</div>
</div>
</form>
</div>
<div class="col-md-4"></div>
</div>
</div>
</body>