-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcase.html
107 lines (95 loc) · 4.43 KB
/
case.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>ARTHUR Case Database Prototype</title>
<link href="css/jquery-ui.css" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/arthur.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<!--Navigation-->
<div id="header"></div>
<!-- case -->
<div class="container">
<div class="jumbotron">
<h1 id="title"></h1>
<p class="stem"></p>
</div>
<div id="history" class="row">
<a name="history"><h1>History</h1></a>
<label for="hx_autocomplete" class="mt-4">Select the questions you would like to ask, then click the "Feedback on History" button</label>
<input style="display:none" id="hx_autocomplete">
<table id="hx" class="table table-sm table-bordered mt-4 table-hover">
<thead>
<th>You Selected</th>
<th>Question</th>
<th>Response</th>
<th colspan="2">Feedback</th>
</thead>
<tbody>
</tbody>
</table>
<a class="btn btn-info" role="button" id="hx-done" style="color: white; clear:both;">Feedback on History</a>
</div>
<div id="physical" class="row">
<a name="physical"><h1>Physical</h1></a>
<label for="px_autocomplete">Select the physical exam components you would like to perform, then click the "Feedback on Physical" button</label>
<input id="px_autocomplete" style="display:none">
<table id="px" class="table table-sm table-bordered mt-4">
<thead>
<th>You Selected</th>
<th>Exam</th>
<th>Finding</th>
<th colspan="2">Feedback</th>
</thead>
</table>
<a class="btn btn-info" role="button" id="px-done" style="color: white; clear:both;">Feedback on Physical</a>
</div>
<div id="history_ddx" class="row">
<a name="ddx"><h1>Differential Diagnosis</h1></a>
<p>Order your differential diagnoses and order them from most
to least likely (top to bottom).</p>
<label style="display:none" for="hxddx_autocomplete">Add a diagnosis:</label>
<input id="hxddx_autocomplete" style="display:none" type="text">
<table id="hxddx" class="table table-sm table-bordered mt-4">
<thead>
<th></th>
<th>Diagnosis</th>
<th>Expert Rank</th>
<th>Expert Feedback</th>
</thead>
<tbody>
</tbody>
</table>
<a class="btn btn-info" role="button" id="hxddx-done" style="color: white; clear:both;">Feedback on Preliminary DDx</a>
</div>
<div id="investigations" class="row">
<a name="investigations"><h1>Investigations</h1></a>
<p>Which investigations would you like to order <i>first</i>?</p>
<table id="ix_table" class="table table-sm table-bordered mt-4">
<thead>
<th>You Selected</th>
<th>Investigation</th>
<th>Result</th>
<th colspan="2">Feedback</th>
</thead>
</table>
<a class="btn btn-info" role="button" id="ix-done" style="color: white; clear:both;">Feedback on Investigations</a>
</div>
</div>
<!--Footer-->
<div id="footer"></div>
<script src="js/prototypes.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/edna.js"></script>
<script src="js/case-elong.js"></script>
<script src="js/arthur.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/marked/0.3.6/marked.min.js"></script>
</body>
</html>