forked from infermedica/js-symptom-checker-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.js
executable file
·26 lines (25 loc) · 898 Bytes
/
base.js
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
const template = `
<div class="card">
<div class="card-header">
Docto Symptom Checker
<span class="d-none d-sm-block float-right text-muted">
<a href="http://www.docto.com.au/">
<img class="logo" src="/public/assets/resource/docto-brand.png">
</a>
</span>
</div>
<div id="step-container" class="card-block padded">
<!-- dynamic content goes here -->
</div>
<div class="card-footer">
<span class="d-sm-block d-lg-none float-left text-muted">
<a href="http://www.docto.com.au/">
<img class="logo" src="/public/assets/resource/docto-brand.png">
</a>
</span>
<button id="next-step" class="btn btn-primary float-right">
Next <i class="fa fa-chevron-right"></i></button>
</div>
</div>
`;
export default template;