-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresetpass.html
More file actions
55 lines (47 loc) · 1.17 KB
/
resetpass.html
File metadata and controls
55 lines (47 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="images/logo2.png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
body {
text-align: center;
display: flex;
align-items: center;
justify-content: center;
margin: 0;
padding: 0;
height: 100vh;
background-image: url(images/l3.jpg);
background-size: cover;
backdrop-filter: blur(5px);
}
form {
width: 600px;
background-color:transparent;
padding: 0 20px;
border: 2px solid white;
border-radius: 25px;
padding-bottom: 30px;
color: aliceblue;
}
input[type="submit"]:hover{
background-color: black;
color: aliceblue;
}
input{
margin-top: 50px;
}
</style>
<body>
<form method="post" action="changepass1.jsp">
<h1>System Station</h1>
<h2>Reset password</h2>
<input type="text" name="t1" style="height: 30px; width:500px;padding: 10px;" placeholder="Enter Your Registered username "><br>
<input type="submit" style="width: 200px; height: 30px;" value="Next" >
</form>
</body>
</html>