-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgotpwd.html
More file actions
142 lines (125 loc) · 3.42 KB
/
forgotpwd.html
File metadata and controls
142 lines (125 loc) · 3.42 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>::: Forgot Password :::</title>
<style>
/* Frutiger Aero Styling */
body {
font-family: 'Segoe UI', Tahoma, sans-serif;
background: url("about.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
color: #333;
margin: 0;
padding: 0;
text-align: center;
}
h2 {
color: #0077b6;
margin-top: 40px;
font-size: 28px;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
h4 {
color: #555;
font-size: 18px;
margin-top: 10px;
margin-bottom: 30px;
line-height: 1.5;
}
form {
background: rgba(255, 255, 255, 0.9);
border-radius: 10px;
padding: 40px;
max-width: 400px;
margin: 0 auto;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
input[type="text"] {
width: 100%;
padding: 10px;
margin: 10px 0;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 8px;
box-sizing: border-box;
transition: border-color 0.3s ease;
}
input[type="text"]:focus {
border-color: #1e73be;
outline: none;
}
.frutiger-button {
cursor: pointer;
position: relative;
padding: 2px;
border-radius: 12px; /* Increased border-radius for more rounded corners */
border: 0;
text-shadow: 1px 1px #000a;
background: linear-gradient(#006caa, #00c3ff);
box-shadow: 0px 4px 6px 0px #0008;
/* Removed transition and animation for no effects */
}
.frutiger-button:hover {
box-shadow: 0px 6px 12px 0px #0009;
}
.frutiger-button:active {
box-shadow: 0px 0px 0px 0px #0000;
}
.inner {
position: relative;
inset: 0px;
padding: 1em;
border-radius: 10px; /* Rounded corners for inner content */
background: radial-gradient(circle at 50% 100%, #30f8f8 10%, #30f8f800 55%),
linear-gradient(#00526a, #009dcd);
overflow: hidden;
/* Removed transition */
}
.top-white {
position: absolute;
border-radius: inherit;
inset: 0 -8em;
background: radial-gradient(
circle at 50% -270%,
#fff 45%,
#fff6 60%,
#fff0 60%
);
}
.inner::after {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
}
.frutiger-button:active .inner::after {
box-shadow: inset 0px 2px 8px -2px #000a;
}
.text {
position: relative;
z-index: 1;
color: white;
font-weight: 550;
}
</style>
</head>
<body>
<h2>Forgot Password?</h2>
<h4>Don't worry! Just enter your username and we'll send a request to admin to change your password for you!</h4>
<form method="POST" action="forgotpwd.php">
<input type="text" name="sender_username" placeholder="Enter your UserID" required><br>
<br>
<button type="submit" class="frutiger-button">
<div class="inner">
<div class="top-white"></div>
<span class="text">Send Request</span>
</div>
</button>
</form>
</body>
</html>