-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·36 lines (30 loc) · 976 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Inspection Form</title>
<link type="text/css" href="css/cupertino/jquery-ui-1.8.16.custom.css" rel="stylesheet" />
<script data-main="scripts/main" src="scripts/require-jquery.js"></script>
</head>
<body>
<div id="templates" style="display: none; ">
<div id="FREE_TEXT">
<input type="text" size="20" maxlength="20" value="Enter text" />
</div>
<div id="ENUM">
<select>
<option value="option1">Option 1</option>
<option value="option2">Option 2</option>
</select>
</div>
<div id="DATE" class="date">
<input type="text" />
</div>
</div>
<div id="formcontent">
<div id="title"></div>
<div id="questions"></div>
</div>
<input type="text" id="datepicker"/>
</body>
</html>