-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuilder.html
More file actions
38 lines (38 loc) · 1.29 KB
/
builder.html
File metadata and controls
38 lines (38 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Intake</title>
<link rel="stylesheet" href="./lib/stylesheets/application.css">
</head>
<body>
<div class="main">
<div class="header">
<p>Drag and Drop the sections in preferred order:</p>
</div>
<div id="print" class="questions">
<h2>Demographic Information</h2>
<div class="section demographic">
</div>
<h2>Clinical Information</h2>
<div class="section clinical">
</div>
<h2>Exposure Information</h2>
<div class="section exposure">
</div>
<div class="section menu-items">
</div>
</div>
<div class="links">
<a><button type="button" name="back" class="link back"><<Back</button></a>
<button type="button" name="next" id="build" class="link next">Review Questionnaire>></button>
</div>
</div>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<link rel="stylesheet" href="/path/to/bootstrap.min.css">
<script src="/path/to/jquery.min.js"></script>
<script src="/path/to/bootstrap.min.js"></script>
<script src="bootstrap-flash-alert.js"></script>
<script src="bundle.js"></script>
</body>
</html>