-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (79 loc) · 2.63 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Z+ PASSWORDS By MH♥</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: url('https://imgs.search.brave.com/SUVacyYN0lKavzzOOc8eW6rpcKdlUpjg9SWvuCIK5w8/rs:fit:860:0:0:0/g:ce/aHR0cHM6Ly9tZWRp/YS5nZXR0eWltYWdl/cy5jb20vaWQvMTE2/OTA1NjQxNy9waG90/by9uZXR3b3JrLXNl/Y3VyaXR5LmpwZz9z/PTYxMng2MTImdz0w/Jms9MjAmYz0zdFJ3/MXk1MGZRN0xUc3lX/bnVPc0dldVFoWVhu/MDViT29sVEtVRi1G/a1RzPQ') no-repeat center center fixed;
background-size: cover;
height: 100vh;
width: 100vw;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
.login-box {
background-color: rgba(255, 255, 255, 0.8);
padding: 40px;
border-radius: 15px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
max-width: 400px;
width: 100%;
text-align: center;
}
.login-box h2 {
margin-bottom: 30px;
color: #333;
}
.login-box input[type="text"],
.login-box input[type="password"] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
font-size: 16px;
}
.login-box input[type="submit"],
.login-box input[type="reset"] {
width: 48%;
padding: 12px;
margin: 10px 1%;
background-color: #4CAF50;
border: none;
border-radius: 5px;
color: white;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.login-box input[type="reset"] {
background-color: #f44336;
}
.login-box input[type="submit"]:hover {
background-color: #45a049;
}
.login-box input[type="reset"]:hover {
background-color: #e53935;
}
</style>
</head>
<body>
<div class="login-box">
<h2>Login</h2>
<form action="welcome.html" method="get">
<input type="text" name="username" placeholder="Username" required>
<input type="password" name="password" placeholder="Password" required>
<input type="submit" value="Login">
<input type="reset" value="Clear">
</form>
</div>
</body>
</html>