-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
53 lines (52 loc) · 1.76 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>FHIR Client</title>
<link rel="stylesheet" href="./font-awesome/css/font-awesome.min.css"/>
<link rel="stylesheet" href="./styles.css"/>
<style>
.temp-disabled {
opacity: .5 !important;
pointer-events: none !important;
}
</style>
</head>
<body>
<div id="no-token">
<label style="width: auto !important; margin-bottom: .5em">Token</label> <br>
<input style="width: 20em" id="token-input"/>
<div class="buttons">
<button disabled id="manual-token">Use Token</button>
<button id="onauth-token">Get Token via OnAuth</button>
<button id="no-auth">No Authentication</button>
<br>
<button class="settings">Settings</button>
</div>
</div>
<div id="main" style="display: none">
<div class="buttons">
<button id="select-files">Add Files</button>
<button id="new-token">Change Token</button>
<button class="settings">Settings</button>
</div>
<div class="buttons">
<button id="toggle-all-none">Select All/None</button>
<button id="delete-selected">Remove Selected Files</button>
<button id="send-selected">Send Selected Files to Repository</button>
</div>
<div id="configuration-error" style="display: none">
<a id="close-conf-error">×</a> Configuration file not exists or incorrect.
</div>
<div>
<ul id="files">
<li class="ifEmptyList" style="text-align: center">Click "Add Files" or Drag&Drop Files to Here</li>
</ul>
</div>
</div>
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
</body>
</html>