-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (75 loc) · 2.56 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
<!--
Copyright (C) 2022-2023 Magenta Health Inc.
Authored by Carmen La <https://carmen.la/>.
This file is part of LookupLab-UI.
LookupLab-UI is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
LookupLab-UI is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with LookupLab-UI. If not, see <https://www.gnu.org/licenses/>.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/ficons/font.css">
<link href="/css/site.css" rel="stylesheet" type="text/css">
<style>
body {
background: gray;
height: 100vh;
}
#app {
background: white;
max-width: 1200px;
margin: 17px;
}
a {
font-weight: bold;
}
</style>
</head>
<body>
<div id="app">
<div class="app-loader-container">
<span class="app-loader"></span>
</div>
</div>
<script src="/js/app.js" type="text/javascript"></script>
<script type="text/javascript">
var apiURL = "http://localhost:3000";
var siteURL = "https://www.acmehealth.ca/"
var audienceConfig = "all"; // "all" "patients" or "others"
var orgName = "Acme Health";
var homePage = "https://www.acmehealth.ca/";
var bookingPage;
var resourcesPage = "https://www.acmehealth.ca/contact";
var registrationPage = "https://www.acmehealth.ca/registration"
var thirdPartyPage = "https://www.acmehealth.ca/information-for-physicians-and-healthcare-facilities"
var prompts = [
"I want to ask a question about...",
"I want information about...",
"I want to book an appointment for...",
"I want information about...",
"I want to request...",
"I want to request..."
];
var placeholders =[
"the status of my referral",
"urgent results",
"my anxiety",
"clinic hours",
"physician billing numbers",
"a sick note"
];
story_discovery_frontend.core.init_BANG_();
</script>
</body>
</html>