-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 1.74 KB
/
index.html
File metadata and controls
46 lines (46 loc) · 1.74 KB
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 class="no-js" lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project: Giant Robot Puppet</title>
<link rel="stylesheet" href="css/app.css">
<script src="js/jquery.min.js"></script>
<script src="js/puppet.js" rel="script"></script>
</head>
<body>
<div class="large-12 columns">
<div class="row mobile-open" >
<div class="large-12 columns text-center">
<img src="images/dave.png" id="puppet" alt="Robot Logo">
<h1>Project: Electric Puppet</h1>
</div>
</div>
<div class="row">
<div class="large-8 columns text-center">
<div class="callout">
<h3>Meet David</h3>
<div class="row" id="group">
<div class="input-group large-4 medium-6 small-8 columns small-centered">
<form id="codeform">
<div class="row">
<div class="large-6 medium-8 small-6 text-left small-centered columns">
<input type="text" id="code" placeholder="Access Code" name="room code"/>
</div>
</div>
<div class="row">
<span id="codeerror"></span>
</div>
<div class="row">
<input type="submit" class="button" value="Join" />
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>