-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (46 loc) · 1.28 KB
/
index.html
File metadata and controls
52 lines (46 loc) · 1.28 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'" />
<meta http-equiv="X-Content-Security-Policy"
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'" />
<title>OpenIAP node Agent</title>
</head>
<body>
<style>
#errorstatus {
color: darkred;
}
pre {
overflow: auto;
white-space: pre-wrap;
display: none;
}
pre.collapsed {
height: 20em;
}
pre.expanded {
height: auto;
}
</style>
<p id="errorstatus"></p>
<div id="setupconnection">
<h1>OpenIAP node Agent</h1>
<p>What openiap flow system do you want to connect to ?</p>
<input type="text" id="setupurl" value="https://app.openiap.io" />
<input type="button" id="setupconnect" value="Connect" />
</div>
<div id="listpackages">
<button id="clearcache">Clear cache</button> | <button href id="signout">Signout</button> | <input type="checkbox" id="autoLaunchCheckbox" />Run at startup
<p id="serverstatus">... initializing ...</p>
<p id="info"></p>
</div>
<ul id="packages">
</ul>
<ul id="output">
</ul>
</body>
<script src="./dist/renderer.js"></script>
</html>