-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathname-handle.html
46 lines (40 loc) · 1.62 KB
/
name-handle.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
<!DOCTYPE html>
<html lang="en">
</head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<title>Game</title>
<!-- Custom styles for this template -->
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="jumbotron jumbotron-fluid vertical-center dark-back light-text">
<div class="container container-fluid">
<h1>Enter Your Information Below</h1>
<hr class="my-4">
<form>
<div class="form-group">
<label>Room Code</label>
<input type="text" class="form-control" id="formGroupExampleInput" placeholder="Enter the room code">
</div>
<div class="form-group">
<label>Name</label>
<input type="text" class="form-control" id="formGroupExampleInput2" placeholder="Enter your name">
</div>
<div class="form-group">
<label>Twitter Handle</label>
<input type="text" class="form-control" id="formGroupExampleInput3" placeholder="Enter your Twitter handle">
</div>
</form>
<div id="buttonUnderForm">
<p class="lead">
<a class="btn btn-primary btn-lg" href="#" role="button">Join the game!</a>
</p>
</div>
</div>
</div>
</body>
</html>