forked from students-alumni-cell-iitkgp/aam-2016
-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgotPassword.php
36 lines (36 loc) · 1.2 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
<?php session_start(); ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>13th Annual Alumni Meet · Forgot Password</title>
<?php include 'topHead.php'; ?>
</head>
<body>
<?php include "navbar.php"; ?>
<div class="container">
<h2 align="center">Reset your Password</h2>
<?php
if (isset($_GET["alert"])) {
echo "<div class='alert alert-danger alert-dismissible'>";
echo "<button type='button' class='close' data-dismiss='alert' aria-label='Close'>";
echo "<span aria-hidden='true'>×</span>";
echo "</button>";
echo $_GET["alert"];
echo "</div>";
}
?>
<form class="" action="newPassword.php" method="post">
<div class="form-group">
<label for="Email ID">Email ID</label>
<input class="form-control" type="email" name="email" value="" placeholder="Email ID" required>
</div>
<div class="form-group">
<label for="DOB">Date of Birth</label>
<input class="form-control" type="date" name="dob" value="" placeholder="Date of Birth" required>
</div>
<button type="submit" class="btn btn-success btn-block" name="button">Submit</button>
</form>
</div>
</body>
</html>