-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintake.html
62 lines (54 loc) · 1.94 KB
/
intake.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
<!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>To get started, tell us more about your current outbreak:</p>
</div>
<div class="subheader">
<p>Have you identified an etiology?</p>
</div>
<div class="options">
<button class="fillbutton" type="button" name="button" id="etiology-yes">Yes</button>
<button type="button" name="button" id="etiology-no">No</button>
</div>
<div class="subheader Etiology">
<p>Suspected Etiology: Select all that apply:</p>
</div>
<div class="options Etiology">
</div>
<div class="subheader symptom">
<p>Symptom Questions: Help us identify a suspected etiology:</p>
</div>
<div class="options symptom">
<button class="fillbutton" type="button" name="button">Some option</button>
<button class="fillbutton" type="button" name="button">Some option</button>
<button class="fillbutton" type="button" name="button">Some option</button>
</div>
<div class="subheader Setting">
<p>Suspected Setting: Select all that apply:</p>
</div>
<div class="options Setting">
<div class="category-box-big">
</div>
</div>
<div class="subheader Transmission">
<p>Suspected Transmission: Select all that apply:</p>
</div>
<div class="options Transmission">
<div class="category-box-big">
</div>
</div>
<div class="one-link intake">
<a href="demographics.html"><button type="button" name="next" class="link next intake">Next>></button></a>
</div>
</div>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<script src="bundle.js"></script>
</body>
</html>