-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforget_student.php
75 lines (73 loc) · 1.56 KB
/
forget_student.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
<?php
error_reporting(0);
session_start();
session_destroy();
if($_SESSION['message'])
{
$message=$_SESSION['message'];
echo "<script type='text/javascript'>
alert('$message')
</script>";
}
?>
<html>
<head>
<title>Forget Password</title>
<link rel="stylesheet" type="text/css" href="css/admin-style.css">
<style type="text/css">
label
{
display: inline-block;
text-align: right;
width: 100px;
padding-top: 10px;
padding-bottom: 10px;
font-size: 16px;
}
.btn
{
padding: 5px 10px;
background: #fff;
border-color: #de3163;
border-radius: 30px;
}
.btn:hover{
background: #de3163;
color: #fff;
border-radius: 30px;
}
.div_deg
{
background-color: #fcf4a3;
width: 500px;
padding-top: 50px;
padding-bottom: 50px;
border-radius: 40px;
}
</style>
</head>
<body>
<!----------------------------------------sidebar code------------------------------------->
<?php
include 'index_sidebar.php';
?>
<!------------------------------------------------------------------------------------------>
<div class="content">
<center>
<br><br>
<h1>Forget password</h1><br>
<div class="div_deg">
<form action="f1_check.php" method="POST">
<div class="adm_int">
<label class="label_text">Email</label>
<input class="input_deg" type="text" name="email" required>
</div>
<br>
<div class="adm_int">
<input class="btn" type="Submit" id="submit" value="Apply" name="apply">
</div>
</form>
</center>
</div>
</body>
</html>