-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
26 lines (26 loc) · 981 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="icon.png" type="image/png" />
<title>FHIR Viewer</title>
<link href="style.css" rel="stylesheet"/>
</head>
<body>
<form id="form" action="index.html">
<input type="hidden" name="dark"/>
<div class="input-wrap">
<input type="text" name="url" placeholder="FHIR URL"/>
</div>
<button class="btn" type="submit">Load</button>
</form>
<div id="container"></div>
<script src="jquery.min.js"></script>
<script src="monaco-editor/min/vs/loader.js"></script>
<script src="known-servers.js"></script>
<script src="lib.js"></script>
<script>init("container")</script>
</body>
</html>