forked from infermedica/js-symptom-checker-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (32 loc) · 1.07 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Symptom Checker Example</title>
</head>
<body>
<div class="container">
<div class="form-group row">
<label for="input-app-id" class="col-2 col-form-label">APP ID</label>
<div class="col-10">
<input placeholder="please paste your app-id here" class="form-control" type="text" id="input-app-id">
</div>
</div>
<div class="form-group row">
<label for="input-app-key" class="col-2 col-form-label">APP KEY</label>
<div class="col-10">
<input placeholder="please paste your app-key here" class="form-control" type="text" id="input-app-key">
</div>
</div>
<div class="row">
<div id="app" class="col-12">
App not loaded.
</div>
</div>
</div>
<script src="public/bundle.js"></script>
</body>
</html>