-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgotPassword.php
94 lines (82 loc) · 4.39 KB
/
forgotPassword.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php
include 'Includes/dbcon.php';
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link href="img/logo/attnlg.jpg" rel="icon">
<title>Code Camp BD - Forget Password</title>
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="css/ruang-admin.min.css" rel="stylesheet">
</head>
<body class="bg-gradient-login">
<!-- Login Content -->
<div class="container-login">
<div class="row justify-content-center">
<div class="col-xl-10 col-lg-12 col-md-9">
<div class="card shadow-sm my-5">
<div class="card-body p-0">
<div class="row">
<div class="col-lg-12">
<div class="login-form">
<div class="text-center">
<img src="img/logo/attnlg.jpg" style="width:100px;height:100px">
<br><br>
<h1 class="h4 text-gray-900 mb-4">Forgot Password</h1>
</div>
<form class="user" method="Post" action="">
<div class="form-group">
<input type="email" class="form-control" required name="email" id="exampleInputEmail" placeholder="Enter Email Address">
</div>
<div class="form-group">
<div class="custom-control custom-checkbox small" style="line-height: 1.5rem;">
<input type="checkbox" class="custom-control-input" id="customCheck">
<!-- <label class="custom-control-label" for="customCheck">Remember
Me</label> -->
</div>
</div>
<div class="form-group">
<input type="submit" class="btn btn-primary btn-block" value="Submit" name="submit" />
</div>
</form>
<?php
if(isset($_POST['submit'])){
}
?>
<!-- <hr>
<a href="index.html" class="btn btn-google btn-block">
<i class="fab fa-google fa-fw"></i> Login with Google
</a>
<a href="index.html" class="btn btn-facebook btn-block">
<i class="fab fa-facebook-f fa-fw"></i> Login with Facebook
</a> -->
<hr>
<div class="text-center">
<a class="font-weight-bold small" href="memberSetup.php">Create a Memeber Account!</a>
<a class="font-weight-bold small" href="organizationSetup.php">Setup Cooperative Account!</a>
<a class="font-weight-bold small" href="forgotPassword.php">Forgot Password?</a>
</div>
<div class="text-center">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Login Content -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<script src="js/ruang-admin.min.js"></script>
</body>
</html>