-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforgot_pws.html
174 lines (155 loc) · 5.31 KB
/
forgot_pws.html
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="icons/favicon-16x16.png">
<title>Password Reset</title>
<style>
.alpha_deli {
background: transparent;
display: flex;
-ms-flex-align: center;
margin-left: 40%;
border-radius: 10px;
}
body {
font-family: 'Courier New', Courier, monospace;
background-color: whitesmoke;
margin: 80px;
margin-top: 10px;
align-items: center;
}
/* Full-width input fields */
input[type=text],
input[type=password],
input[type=tel] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid blue;
border-radius: 5px;
box-sizing: border-box;
}
/* Set a style for all buttons */
button {
background-color: blue;
padding: 14px 20px;
margin: 8px 0;
border: none;
color: white;
border-radius: 5px;
cursor: pointer;
width: 100%;
}
button:hover {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.9);
}
.container {
background-color: #f1f1f1;
border-radius: 5px;
padding: 10px;
margin: 20px;
}
/* Extra styles for the cancel button */
.cancelbtn {
width: 100%;
color: #f44336;
border: 1px solid #f44336;
padding: 10px 18px;
background-color: white;
}
.cancelbtn a {
color: black;
text-decoration: none;
}
.cancelbtn a:hover {
color: white;
}
/* The Modal (background) */
.modal {
display: none;
/* Hidden by default */
position: fixed;
/* Stay in place */
z-index: 1;
/* Sit on top */
left: 0;
top: 0;
width: 100%;
/* Full width */
height: 100%;
/* Full height */
overflow: auto;
/* Enable scroll if needed */
background-color: rgb(0, 0, 0);
/* Fallback color */
background-color: rgba(0, 0, 0, 0.4);
/* Black w/ opacity */
padding-top: 60px;
}
/* Modal Content/Box */
.modal-content {
background-color: #fefefe;
padding: 10px;
margin: 5px auto;
/*15% auto 5% from the top, 15% from the bottom and centered */
border-radius: 10px;
width: 80%;
/* Could be more or less, depending on screen size */
}
/* Zoom Animation */
.animate {
-webkit-animation: animatezoom 0.6s;
animation: animatezoom 0.6s
}
@-webkit-keyframes animatezoom {
from {
-webkit-transform: scale(0)
}
to {
-webkit-transform: scale(1)
}
}
@keyframes animatezoom {
from {
transform: scale(0)
}
to {
transform: scale(1)
}
}
/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
span.psw {
display: block;
float: none;
}
}
</style>
</head>
<body>
<div>
<form style="width: 400px;" class="modal-content animate" action="/action_page.php" method="post">
<div class="imgcontainer">
<img src="icons/chop.jpg" alt="alpha_deli" width="90px" class="alpha_deli">
</div>
<div class="container">
<p style="text-align: center;">
<h1><strong>Forgot Password?</strong></h1>
</p>
<p>Please enter the email address associated with your account.</p>
<label for="email"><b>Email</b></label>
<input type="text" placeholder="Enter Email" name="email" required>
</div>
<p style="padding: 10px">We will send you a link to this email address to reset your password</p>
<div>
<button type="button">Send link</button>
<a href="index.html"><button type="button" class="cancelbtn"
style="width: 100%;">Cancel</button></a>
</button>
</div>
</form>
</div>
</body>
</html>