-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Login</title>
<link
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
rel="stylesheet"
/>
</head>
<body>
<div class="container mt-5">
<div class="row justify-content-center">
<div class="col-md-4">
<div class="card">
<div class="card-header text-center">
<h1>Login</h1>
</div>
<div class="card-body">
<form action="chat.php" method="post">
<div class="form-group">
<label for="username">Username:</label>
<input
type="text"
id="username"
name="username"
class="form-control"
required
/>
</div>
<button type="submit" class="btn btn-primary btn-block">
Login
</button>
</form>
</div>
</div>
</div>
</div>
</div>
</body>
</html>