-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgetpwd.php
More file actions
58 lines (46 loc) · 1.07 KB
/
forgetpwd.php
File metadata and controls
58 lines (46 loc) · 1.07 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
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Forget Password</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<style type="text/css">
@font-face{
font-family: 'Varela Round';
src: url(VarelaRound-Regular.ttf);
}
body {
background-color: #7d1a9b;
}
.panel
{
margin-top: 150px;
padding-top: 10px;
}
a.link{
margin-left: 110px;
}
</style>
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<h4 align="center">Sorry Dude <i class="fa fa-frown-o" aria-hidden="true"></i></h4>
</div>
</div>
</nav>
<div class="container">
<div class="panel">
<div class="panel-body">
<p> Currently we don't have any other option.</p> <p>If you do not remeber the password,
kindly make a call to Bala.</p>
<i class="fa fa-phone"> <b>9600201453</b></i>
<br>
<a href="home.php" class="link">Goto Home</a></div></div></div>
</body>
</html>