Skip to content

Commit 1052374

Browse files
authored
Update cert.html
1 parent 01e8ec1 commit 1052374

File tree

1 file changed

+31
-7
lines changed

1 file changed

+31
-7
lines changed

web/cert.html

Lines changed: 31 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html lang="en-AU">
33
<head>
4+
<meta charset="utf-8" />
45
<title>ProStore Web</title>
56
<link rel="stylesheet" href="styles.css">
67
<link rel="stylesheet" href="certStyles.css">
8+
<!-- Google Font -->
9+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
710
</head>
811
<body>
912
<main>
@@ -14,27 +17,48 @@
1417
<div class="dot" style="background-color: #febc2e;"></div>
1518
<div class="dot" style="background-color: #28c840;"></div>
1619
</div>
20+
1721
<p class="app-title">ProStore Web</p>
1822
</div>
1923
</div>
2024

2125
<div class="content-area">
2226
<div class="sidebar">
23-
<div onclick="window.location.href='index.html'" class="sidebar-item">ProStore Installer</div>
24-
<div onclick="window.location.href='cert.html'" class="sidebar-item active">Certificate Manager & Status</div>
25-
<div onclick="window.location.href='converter.html'" class="sidebar-item">Certificate Converter</div>
27+
<div onclick="window.location.href = 'index.html';" class="sidebar-item">ProStore Installer</div>
28+
<div onclick="window.location.href = 'cert.html';" class="sidebar-item active">Certificate Manager & Status</div>
29+
<div onclick="window.location.href = 'converter.html';" class="sidebar-item">Certificate Converter</div>
2630
</div>
2731

2832
<div class="panel">
2933
<h1 class="title">Certificate Manager</h1>
3034

31-
<div id="recommended"></div>
32-
<div id="certTable"></div>
33-
<div id="updates"></div>
35+
<!-- Recommended -->
36+
<div id="recommended" class="recommended-box" aria-live="polite"></div>
37+
38+
<!-- Cards container -->
39+
<div id="certList" class="cert-list"></div>
40+
41+
<!-- Updates -->
42+
<div id="updates" class="updates-box">
43+
<h3 class="updates-title">📰 Updates</h3>
44+
<div id="updatesInner" class="updates-inner"></div>
45+
</div>
3446
</div>
3547
</div>
3648
</main>
3749

50+
<!-- Modal for details -->
51+
<div id="certModal" class="modal" aria-hidden="true">
52+
<div class="modal-panel" role="dialog" aria-modal="true">
53+
<button id="modalClose" class="modal-close" title="Close"></button>
54+
<h2 id="modalName"></h2>
55+
<div id="modalMeta" class="modal-meta"></div>
56+
<div id="modalDates" class="modal-dates"></div>
57+
<div id="modalDownload" class="modal-download"></div>
58+
<p class="modal-note">Disclaimer: Certificates may be revoked at any time by Apple or the cert owner.</p>
59+
</div>
60+
</div>
61+
3862
<script src="certManager.js"></script>
3963
</body>
4064
</html>

0 commit comments

Comments
 (0)