-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (32 loc) · 1.44 KB
/
index.html
File metadata and controls
36 lines (32 loc) · 1.44 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
<!DOCTYPE html>
<html>
<head>
<title>ProStore Web</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<script src="installer.js"></script>
</head>
<body>
<div class="content-area">
<div class="sidebar">
<div onclick="window.location.href = 'index.html';" class="sidebar-item active">ProStore Installer</div>
<div onclick="window.location.href = 'cert.html';" class="sidebar-item">Certificate Manager</div>
<div onclick="window.location.href = 'dns.html';" class="sidebar-item">Anti-Revoke DNS</div>
<div onclick="window.location.href = 'docs/';" class="sidebar-item">Guide / Docs</div>
</div>
<div class="panel">
<h1 class="title">ProStore Installer</h1><br>
<img class="logo-img" src="https://raw.githubusercontent.com/ProStore-iOS/ProStore/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;">Install</button><br>
<a class="advanced-href" href="advanced_installer.html">Advanced Installer</a>
</div>
</div>
<script>
pulse('reset');
loadingImg(0);
</script>
</body>
</html>