-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforget.php
More file actions
83 lines (79 loc) · 1.78 KB
/
forget.php
File metadata and controls
83 lines (79 loc) · 1.78 KB
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
75
76
77
78
79
80
81
82
83
<html>
<head>
<?php
session_start();
include "header.php";
?>
<style>
td{color : brown}
.content{
margin: 10px;
padding : 4rem -5rem 4rem 3rem;
box-shadow:0 0 5px 5px rgba(0,0,0, .05);
}
.form-control
{
display: block;
width:300px;
font-size:1rem;
font-weight:400;
line-height:1.5;
border-color:#00ac96;
border-style:solid;
border-width:0 0 1px 0;
padding : 0;
color:#495057;
height:auto;
border-radius:0;
background-color: #fff;
background-clip: padding-box;
}
.btn-primary{
background-color:white;
border-color:#00ac96;
color:#00ac96;
}
.btn-primary:hover{
background-color:#00ac96;
color:#fff;
}
.error
{
color: #FF0000;
}
</style>
</head>
<body>
<?php include "nav1.php";
include "dbconfigure.php";
if(isset($_SESSION['status']))
{
?>
<div class="alert alert-success">
<h5><?=$_SESSION['status'];?></h5>
</div>
<?php
unset($_SESSION['status']);
}
?>
<div class="container" style = "margin-top : 50px">
<div class ="row content">
<div class ="col-md-6 mb-3">
<img src = "myimages2/forgetpass.jpg" width="400" height="350" style="margin-top:20px">
</div>
<div clas="col-md-6">
<h2 class="signin-text mb-3" style = "font-family : 'Monotype Corsiva' ; color:#E6120E">Forgot Password</h2>
<br>
<form method="post" action="forgotpassword_change.php">
<div class="form-group">
<label><b>Email</b></label>
<input type = text name = "emailid" class="form-control" placeholder="Enter registered email id">
</div>
<div class="form-group">
<input type = submit name = "Send verification link" name="submit" class="btn btn-primary">
</div>
<br>
</form>
</div>
</body>
</html>