-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (74 loc) · 2.65 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<title>Drag Example</title>
<script type="text/javascript" src="js/mootools-core-1.3-full-compat-yc.js"></script>
<script type="text/javascript" src="js/mootools-more.js"></script>
<script type= "text/javascript" src="js/sortables.js"></script>
<script type= "text/javascript" src="js/pseudos-keys.js"></script>
<script type= "text/javascript" src="js/custom.js"></script>
<link href="css/form.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id = "content">
<div id ="header">
<h1 id ="brand">
Columbia University E-Forms
</h1>
<div id="header-tabs-container">
<div id="header-tabs">
<div class="header-tab header-pressed" id="worflow">Build Form</div>
<div class="header-tab" id="worflow">Add Workflow</div>
<div class="header-tab" id="print">Print Your Form!</div>
</div>
</div>
</div>
<!--add new div that allows us to switch out content-->
<div id ="form-elements">
<div id ="form-tabs">
<div id ="add-field" class='tab-open pressed' open='form-tools-one'>Add a Field</div>
<div id ="field-settings" class='tab-open' open='form-tools-two'>Field Settings</div>
<div id ="form-settings" class='tab-open' open='form-tools-three'>Form Settings</div>
</div><!--end tabs-->
<div id="test">
<div id ="form-tools-one" class='tab'>
<ul id ="column-one">
<li class ="single-line-text">Single line Text</li>
<li class ="paragraph-text">Paragraph Text</li>
<li class ="multiple-choice">Multiple Choice</li>
<li class ="section-break">Section Break</li>
</ul>
<ul id ="column-two">
<li class ="number">Number</li>
<li class ="checkboxes">Checkboxes</li>
<li class ="dropdown">Dropdown</li>
<li class ="page-break">Page Break</li>
</ul>
</div>
<div id ="form-tools-two" class="hidden tab">
<ul id ="column-one">
<li class ="single-line-text">Teddy Bears</li>
<li class ="paragraph-text">Babies!</li>
<li class ="multiple-choice">Hairy legs!</li>
<li class ="section-break">George Washington</li>
</ul>
<ul id ="column-two">
<li class ="number">Coolness</li>
<li class ="checkboxes">Black</li>
<li class ="dropdown">White</li>
<li class ="page-break">Orange</li>
</ul>
</div>
<div id ="form-tools-three" class="hidden tab">
<ul id ="column-two">
<li class ="number">Coolness</li>
<li class ="checkboxes">Black</li>
<li class ="dropdown">White</li>
<li class ="page-break">Orange</li>
</ul>
</div>
</div><!-end Form Elements-->
</div>
<ul id ="form-canvas"></ul>
</body>
</html>