-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (39 loc) · 1.79 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
<!DOCTYPE html>
<html ng-app="DoctorDoctorApp">
<head>
<meta charset="utf-8">
<script src="lib/jquery-3.2.1.min.js"></script>
<script src="lib/angular.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="app.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Doctor Doctor, won't you give me the news?</title>
</head>
<body>
<h2>Doctor Doctor, won't you give me the news?</h2>
<div id="banner-container">
<img id="banner" src="img/doctor_banner.png" alt="Doctor Banner Image"/>
</div>
<div ng-controller="DoctorDoctorController">
<div class="jumbotron" id="search-container">
<input id="search-box"
type="text"
placeholder="Enter ailment e.g. I have a sore throat"
class="form-control"
ng-model="ailment">
<button
id="search-button"
class="btn btn-primary btn-lg"
ng-click="showResults()">
Diagnose</button>
</div>
<div class="jumbotron" id="results-container" ng-show="helpLink">
{{ diagnoseRes }} <a href="{{ helpLink }}" target="_blank">{{ helpLink }}</a> (info)
</div>
</div>
<div class="footer">
<p>This website is <a target="_blank" href="https://github.com/galtech/doctordoctor">open source</a>. Contributions are welcome.</p>
</div>
</body>
</html>