-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforgot-password.php
65 lines (65 loc) · 2.68 KB
/
forgot-password.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
<title> Forgot Password </title>
<link href="css/font-awesome.css" rel="stylesheet">
<link href="css/fonts.css" rel="stylesheet">
<link href="css/simple-line-icons.css" rel="stylesheet">
<!-- pages css -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/responsive-style.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
</head>
<body>
<?php
require('include/page-header.php');
?>
<section class="login-section">
<div class="container">
<div class="login-inner">
<form class="login-form common-form forgot-password-page">
<h3 class="form-h">Forgot Password</h3>
<div class="form-wrap">
<p class="forgot-info">
Don't worry! just fill in your email and we'll help you reset your password.
</p>
<div class="row">
<div class="form-group col-md-12 col-sm-12 col-xs-12">
<input type="text" placeholder="Enter Email" class="form-control">
</div>
</div>
<div class="form-group col-md-12 col-sm-12 col-xs-12 p-0">
<div class="sign-inntn">
<a href="#" class="btn cut-btn" >Submit</a>
</div>
</div>
</div>
</form>
</div>
</div>
</section>
<?php
require('include/footer.php');
?>
</body>
<script type="text/javascript" src="js/jquery-2.1.3.min.js"></script>
<script type="text/javascript" src="js/jquery.sliderPro.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script>
$(window).scroll(function() {
if ($(this).scrollTop() > 1){
$('header').addClass("sticky");
}
else{
$('header').removeClass("sticky");
}
});
</script>
</html>