-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.html
34 lines (31 loc) · 1.14 KB
/
app.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
<html>
<head>
<link rel="stylesheet" href="./css/app.css">
</head>
<body onload="openNav()">
<div id="containerDiv" class="container">
<div id="navPanel" class="nav">
<div class="menuBtn">
<span id="closeNavBtn" class="closebtn" onclick="toggleNav()"></span>
</div>
<div class="menuList">
<form action="hideNav()">
<label for="subjID">Participant</label>
<input type="text" id="subjID" name="subjid" placeholder="0">
<label for="sessID">Session</label>
<input type="text" id="sessID" name="sessid" placeholder="0">
<label for="picNumID">Picture</label>
<input type="text" id="picNumID" name="picnumid" placeholder="1" value="1">
<button type="button" onclick="getStarted()">Start</button>
</form>
</div>
</div>
<div id="contentDiv" class="content">
</div>
</div>
<script type="text/javascript" src="./js/lowLag.js"></script>
<script type="text/javascript" src="./core.js"></script>
<script type="text/javascript" src="./menu.js"></script>
<script type="text/javascript" src="./cloudChecker.js"></script>
</body>
</html>