This repository has been archived by the owner on May 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
48 lines (44 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ProjectBacon</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta http-equiv="cleartype" content="on">
</head>
<body>
<!-- Login -->
<div class="full-height align-items-center" id="login-wrapper">
<div class="container">
<div class="row">
<div class="col">
<div class="mx-auto" id="login-fieldset">
<h2 class="text-center my-4">Project Bacon</h2>
<div class="input-group mb-3">
<div class="input-group-prepend">
<div class="input-group-text">Username:</div>
</div>
<input type="text"class="form-control" tabindex="0" autofocus autocomplete="off" id="username-input" minLength="3" maxlength="25">
<div class="input-group-append">
<button type="button" class="btn btn-outline-secondary" id="play-game-button">Play</button>
</div>
</div>
<div class="alert alert-danger text-center" id="login-input-alert" role="alert"></div>
</div>
</div>
</div>
</div>
</div>
<!-- Game -->
<div id="game"></div>
<!-- Chat -->
<div class="m-2" id="chat-wrapper">
<div id="chat-box-background">
<ul id="chat-box"></ul>
</div>
<input type="text" class="form-control form-control-sm" id="chat-input" placeholder="Chat here..." maxlength="150">
</div>
</body>
</html>