-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·154 lines (142 loc) · 6.38 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
<!DOCTYPE html>
<html ng-app="woolfApp">
<head>
<title>DoctorWat</title>
<!-- Stylesheets -->
<link rel="stylesheet" href="./bower_components/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="./css/photon.css">
<link rel="stylesheet" href="./css/app.css">
<link rel="stylesheet" href="./css/section.css">
<link rel="stylesheet" href="./css/component.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- External Javascript -->
<script src="./bower_components/angular/angular.js"></script>
<script src="./bower_components/angular-ui-router/release/angular-ui-router.js"></script>
<script>window.$ = window.jQuery = require('./bower_components/jquery/dist/jquery.min.js');</script>
<!-- Internal Javascript -->
<script src="./js/common.js" charset="utf-8"></script>
<script src="./js/markdown.js"></script>
<script src="./js/app.js" charset="utf-8"></script>
<script src="./js/function.js"></script>
</head>
<body ng-controller="woolfController">
<div class="window">
<div class = 'function_section'>
<div class="row">
<div class="col-lg-4">
<div class="input-group">
<input id="search" type="text" class="form-control" placeholder="Search for...">
<span class="input-group-btn">
<button class="btn btn-secondary" type="button"
onclick='{google()}'>Search!</button>
</span>
</div>
</div>
<div class="col-lg-4">
<div class="msg-center" id="msg-center">No Message</div>
</div>
<div class="col-lg-4">
<div class="input-group">
<input id="data" type="text" class="form-control" placeholder="Patient ID...">
<span class="input-group-btn">
<button class="btn btn-secondary" type="button"
onclick='{patientID()}'><i class="fa fa-user-md fa-2x" aria-hidden="true"></i></button>
</span>
</div>
</div>
</div>
<div class="row">
<div class="button_box">
<button type="button" class="btn btn-primary btn-lgk" onclick='{google("Ischemic Heart Disease")}'>Ischemic Heart Disease</button>
</div>
<div class="button_box">
<button type="button" class="btn btn-primary btn-lg" onclick='{google("Stroke")}'>Stroke</button>
</div>
<div class="button_box">
<button type="button" class="btn btn-primary btn-lg" onclick='{google("Chronic Obstructive Pulmonary Disease")}'>Chronic Obstructive Pulmonary Disease</button>
</div>
<div class="button_box">
<button type="button" class="btn btn-primary btn-lg" onclick='{google("Lower Respiratory Infections")}'>Lower Respiratory Infections</button>
</div>
<div class="button_box">
<button type="button" class="btn btn-primary btn-lg" onclick='{google("Lung Cancers")}'>Lung Cancers</button>
</div>
<div class="function_box">
<button type="button" class="btn btn-success btn-lg"
onclick='{see()}'><i class="fa fa-camera" aria-hidden="true"></i>
Camera</button>
</div>
</div>
<div class="row">
<div class="button_box">
<button type="button" class="btn btn-primary btn-lg" onclick='{google("Diabetes")}'>Diabetes</button>
</div>
<div class="button_box">
<button type="button" class="btn btn-primary btn-lg" onclick='{google("StrPreterm Birth Complication")}'>Preterm Birth Complications</button>
</div>
<div class="button_box">
<button type="button" class="btn btn-primary btn-lg" onclick='{google("Tuberculosis")}'>Tuberculosis</button>
</div>
<div class="button_box">
<button type="button" class="btn btn-primary btn-lg" onclick='{google("HIV/AIDS")}'>HIV/AIDS</button>
</div>
<div class="button_box">
<button type="button" class="btn btn-primary btn-lg" onclick='{google("Diarrheal Diseases")}'>Diarrheal Diseases</button>
</div>
<div class="function_box">
<a onclick='{email()}'>
<button type="button" class="btn btn-danger btn-lg" onclick=''><i class="fa fa-medkit" aria-hidden="true"></i>
Contact</button></a>
</div>
<div class="function_box">
<button type="button" class="btn btn-warning"
onclick='{listen()}'>
Record
<i class="fa fa-microphone" aria-hidden="true"></i>
Notes
</button>
</div>
<div class="function_box">
<button type="button" class="btn btn-info"
onclick='{analysis()}'>
<i class="fa fa-bar-chart" aria-hidden="true"></i>
Analysis
</button>
</div>
</div>
</div>
<div class="window-content">
<div class="pane-group">
<div class="pane pane-sm sidebar">
<ul class="list-group">
<!--
<li class="list-group-header">
<input class="form-control" type="text" placeholder="Search for anything.">
</li>
-->
</ul>
<nav class="nav-group" id="recent-files">
<h3 class="nav-group-title">Recent</h3>
<span style="color:#555555" class='nav-group-item' ng-class='{active : isFileNameSelected(file)}' ng-repeat="file in files" ng-click="loadFile(file)">{{file}}</span>
</nav>
<footer class="toolbar toolbar-footer" style="position:absolute;bottom:0px;width:100%;">
<div class="toolbar-actions">
<button class="btn btn-default">
<span class="icon icon-cog" ng-click="goto('configure')"></span>
</button>
</div>
</footer>
</div>
<div class="pane">
<div ui-view style="height:100%">
</div>
</div>
<div class="search_section" id = 'search_result'>
</div>
</div>
</div>
</div>
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
<script>if (window.module) module = window.module;</script>
</body>
</html>