forked from pipitone/arthur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
165 lines (151 loc) · 7.06 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!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 -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<!-- Brand and toggle to get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#" style="padding-top: 0px">
<img src="images/Full Logo Inline ARTHR.png" class="img-responsive" alt="ARTHR" style="max-width: 200px"></img>
</a>
</div>
<!-- Nav links -->
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Cases</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">About<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">ARTHUR</a></li>
<li><a href="#">Team</a></li>
<li><a href="#">FAQ</a></li>
</ul>
</li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<!-- 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 a question to ask:</label>
<input id="hx_autocomplete">
<table id="hx" class="table table-sm table-bordered mt-4">
<thead>
<th></th>
<th>Question</th>
<th>Response</th>
<th>Feedback</th>
</thead>
</table>
<a class="btn btn-info" role="button" id="hx-done" style="color: white; clear:both;">Feedback on History</a>
</div>
<div id="history_ddx" class="row">
<a name="ddx"><h1>Preliminary DDx</h1></a>
<p>Enter your differential diagnoses and order them from most
to least likely (top to bottom)..</p>
<label for="hxddx_autocomplete">Add a diagnosis:</label>
<input id="hxddx_autocomplete" 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="physical" class="row">
<a name="physical"><h1>Physical</h1></a>
<label for="px_autocomplete">Select an examination to perform:</label>
<input id="px_autocomplete" disabled="">
<table id="px" class="table table-sm table-bordered mt-4">
<thead>
<th></th>
<th>Question</th>
<th>Response</th>
<th>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="investigations" class="row">
<a name="investigations"><h1>What investigations do you do <em>first</em>?</h1></a>
<label for="ix_autocomplete">Select an examination to perform:</label>
<input id="ix_autocomplete" disabled="">
<table id="ix" class="table table-sm table-bordered mt-4">
<thead>
<th></th>
<th>Investigation</th>
<th>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>
<div class="container text-center">
<hr />
<div class="row">
<div class="col-lg-12">
<div class="col-md-4">
<ul class="nav nav-pills nav-stacked">
<li><a href="#">About us</a></li>
<li><a href="#">Qmed.ca</a></li>
</ul>
</div>
<div class="col-md-4">
<ul class="nav nav-pills nav-stacked">
<li><a href="#">Cases by Specialty</a></li>
<li><a href="#">Cases by Presentation</a></li>
</ul>
</div>
<div class="col-md-4">
<ul class="nav nav-pills nav-stacked">
<li><a href="#">Contact</a></li>
<li><a href="#">Feedback</a></li>
</ul>
</div>
</div>
</div>
<hr>
<div class="row">
<div class="col-lg-12">
<ul class="nav nav-pills nav-justified">
<li><a href="/">© 2017 Aesculapian Society</a></li>
<li><a href="#">Terms of Service</a></li>
<li><a href="#">Privacy</a></li>
</ul>
</div>
</div>
</div>
<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/case-elong.js"></script>
<script src="js/arthur.js"></script>
</body>
</html>