Uh oh!
There was an error while loading. Please reload this page.
This repository was archived by the owner on Mar 7, 2026. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcert.html
More file actions
Latest commit
60 lines (51 loc) · 2.18 KB
/
Copy pathcert.html
File metadata and controls
60 lines (51 loc) · 2.18 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
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<htmllang="en-AU">
<head>
<metacharset="utf-8" />
<metaname="viewport" content="width=device-width,initial-scale=1" />
<title>ProStore Web</title>
<linkrel="stylesheet" href="styles.css">
<linkrel="stylesheet" href="certStyles.css">
</head>
<body>
<divclass="content-area">
<divclass="sidebar">
<divonclick="window.location.href = 'index.html';" class="sidebar-item">ProStore Installer</div>
<divonclick="window.location.href = 'cert.html';" class="sidebar-item active">Certificate Manager</div>
<divonclick="window.location.href = 'dns.html';" class="sidebar-item">Anti-Revoke DNS</div>
<divonclick="window.location.href = 'docs/';" class="sidebar-item">Guide / Docs</div>
</div>
<divclass="panel">
<h1class="title">Certificate Manager</h1>
<!-- Recommended -->
<divid="recommended" class="recommended-box" aria-live="polite"></div>
<!-- Controls row (optional future extension) -->
<divclass="controls-row">
<!-- placeholder: search/filter could go here later -->
</div>
<!-- Cards container -->
<divid="certList" class="cert-list" aria-live="polite"></div>
<!-- Updates -->
<divid="updates" class="updates-box">
<divclass="updates-header">
<h3class="updates-title">📰 Updates</h3>
<!-- The caret button: shows '^' and rotates when expanded -->
<buttonid="updatesToggle" class="updates-toggle" aria-expanded="false" title="Toggle updates">^</button>
</div>
<divid="updatesInner" class="updates-inner"></div>
</div>
</div>
</div>
<!-- Modal for certificate details -->
<divid="certModal" class="modal" aria-hidden="true">
<divclass="modal-panel" role="dialog" aria-modal="true">
<buttonid="modalClose" class="modal-close" title="Close">✕</button>
<h2id="modalName"></h2>
<divid="modalMeta" class="modal-meta"></div>
<divid="modalDates" class="modal-dates"></div>
<divid="modalDownload" class="modal-download"></div>
</div>
</div>
<scriptsrc="certManager.js"></script>
</body>
</html>