-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreset_user_email.php
More file actions
123 lines (89 loc) · 2.1 KB
/
reset_user_email.php
File metadata and controls
123 lines (89 loc) · 2.1 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!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, shrink-to-fit=no">
<title></title>
<link rel="stylesheet" type="text/css" href="bootstrap/dist/css/bootstrap.min.css">
<!-- custom google font -->
<link href="https://fonts.googleapis.com/css?family=Raleway&display=swap" rel="stylesheet">
<style type="text/css">
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Raleway', sans-serif;
}
body {
background-color: #f5f5f5;
}
.forget {
background-color: #f5f5f5;
height: 500px;
}
.forget h3 {
padding-left:30%;
padding-top: 3%;
font-weight: bolder;
font-size: 20px;
}
.email_form {
background:#ffffff;
height: 350px;
width: 50%;
margin: 10% auto;
}
form {
margin-top: -15%;
margin-left: 10%;
padding-top: 15%;
}
form label {
font-weight: bolder;
padding-left: 15%;
}
header {
padding-left: 15%;
padding-top: 5%;
}
input[type=email]{
width: 60%;
margin-top: 2%;
margin-left: 15%;
font-size: 16px;
}
.default {
background-color: #e6e600;
color:#ffffff;
width: 60%;
height: 40px;
border: 1px solid #e6e600;
font-weight: bolder;
font-size: 20px;
margin-left: 15%;
}
.next {
margin-top: 3%;
padding-left: 15%;
font-size: 17px;
}
</style>
</head>
<body>
<div class="container-fluid forget">
<h3>Please enter email to reset password</h3>
<div class="container-fluid email_form">
<form method="post" action="user_link.php">
<div class="form-group">
<label>Email address</label>
<input type="email" name="email" class="form-control" placeholder="Email" required="required">
</div>
<button type="submit" name="send_email" class="default">Submit</button>
</form>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script type="text/javascript" src="bootstrap/dist/js/bootstrap.min.js"></script>
</body>
</html>