Skip to content

Commit 6e06ca5

Browse files
authored
Create index.html
1 parent a36e144 commit 6e06ca5

File tree

1 file changed

+66
-0
lines changed

1 file changed

+66
-0
lines changed

index.html

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Login Page</title>
5+
<style>
6+
body {
7+
font-family: Arial, sans-serif;
8+
background-color: #f4f4f4;
9+
margin: 0;
10+
padding: 0;
11+
}
12+
13+
.container {
14+
width: 300px;
15+
margin: 0 auto;
16+
padding-top: 100px;
17+
}
18+
19+
.form-group {
20+
margin-bottom: 20px;
21+
}
22+
23+
.form-group label {
24+
display: block;
25+
font-weight: bold;
26+
margin-bottom: 5px;
27+
}
28+
29+
.form-group input[type="text"],
30+
.form-group input[type="password"] {
31+
width: 100%;
32+
padding: 8px;
33+
font-size: 16px;
34+
border: 1px solid #ccc;
35+
border-radius: 4px;
36+
}
37+
38+
.form-group input[type="submit"] {
39+
background-color: #4CAF50;
40+
color: white;
41+
border: none;
42+
padding: 10px 16px;
43+
font-size: 16px;
44+
cursor: pointer;
45+
border-radius: 4px;
46+
}
47+
</style>
48+
</head>
49+
<body>
50+
<div class="container">
51+
<form>
52+
<div class="form-group">
53+
<label for="username">Username:</label>
54+
<input type="text" id="username" name="username" placeholder="Enter your username" required>
55+
</div>
56+
<div class="form-group">
57+
<label for="password">Password:</label>
58+
<input type="password" id="password" name="password" placeholder="Enter your password" required>
59+
</div>
60+
<div class="form-group">
61+
<input type="submit" value="Login">
62+
</div>
63+
</form>
64+
</div>
65+
</body>
66+
</html>

0 commit comments

Comments
 (0)