-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
40 lines (32 loc) · 1.09 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
<html>
<head>
<meta charset="UTF-8">
<title>UberManager v0.2.2</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<input id="installzxp" type="button" value="Install Extension | ZXP">
<h2>Extensions</h2>
<ul id="adobe-extensions-list" >
</ul>
<div id="message_box_wrapper">
<div id="message_box" class="progress">
<div class="msg" id="msg_progress">
<p id="msg_progress_text">Installation is in progress</p>
<img class="loading_img" width="32" height="32" src="./img/loading-spin.svg" alt="Loading icon" />
</div>
<div class="msg" id="msg_success">
<p id="msg_success_text">Extension successfully installed</p>
<img width="32" height="32" src="./img/icon_check.svg" />
</div>
<div class="msg" id="msg_error">
<p id="msg_error_text">Error!</p>
<img width="32" height="32" src="./img/icon_error.svg" />
</div>
</div>
</div>
<script>
require('./app.js')
</script>
</body>
</html>