-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #121212;
color: #ffffff;
font-family: Arial, sans-serif;
margin: 0;
}
.login-container {
text-align: center;
}
input {
margin: 10px;
padding: 10px;
border: none;
border-radius: 5px;
font-size: 16px;
}
button {
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 16px;
background-color: #6200ea;
color: #ffffff;
cursor: pointer;
}
</style>
</head>
<body>
<div class="login-container">
<h2>Login to Chat</h2>
<form action="login.php" method="POST">
<input type="text" name="username" placeholder="Enter Name" required><br>
<input type="password" name="password" placeholder="Enter Password" required><br>
<button type="submit">Login</button>
</form>
</div>
</body>
</html>