-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdater.html
More file actions
27 lines (24 loc) · 839 Bytes
/
updater.html
File metadata and controls
27 lines (24 loc) · 839 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>ProStore Web</title>
<link rel="stylesheet" href="styles.css">
<script src="installer.js"></script>
</head>
<body>
<main>
<div class="panel">
<img class="logo-img" src="https://github.com/ProStore-iOS/ProStore/raw/main/icon.png"><br>
<!-- Download button (visible initially) -->
<button class="download-button" onclick="startDownload();">Download</button>
<!-- Install button (hidden until download completes) -->
<button class="install-button" onclick="performInstall();" style="display:none;">Update</button><br>
<a class="advanced-href" href="advanced_installer.html">Advanced Installer</a>
</div>
</main>
<script>
pulse('reset');
loadingImg(0);
</script>
</body>
</html>