Skip to content

Commit adf63cc

Browse files
authored
Create cert.html
1 parent b09b5ca commit adf63cc

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

web/cert.html

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>ProStore Web</title>
5+
<link rel="stylesheet" href="styles.css">
6+
<link rel="stylesheet" href="certStyles.css">
7+
</head>
8+
<body>
9+
<main>
10+
<div class="header-bar">
11+
<div class="header-left">
12+
<div class="dot-container">
13+
<div class="dot" style="background-color: #ff5f57;"></div>
14+
<div class="dot" style="background-color: #febc2e;"></div>
15+
<div class="dot" style="background-color: #28c840;"></div>
16+
</div>
17+
<p class="app-title">ProStore Web</p>
18+
</div>
19+
</div>
20+
21+
<div class="content-area">
22+
<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>
26+
</div>
27+
28+
<div class="panel">
29+
<h1 class="title">Certificate Manager</h1>
30+
31+
<div id="recommended"></div>
32+
<div id="certTable"></div>
33+
<div id="updates"></div>
34+
</div>
35+
</div>
36+
</main>
37+
38+
<script src="certManager.js"></script>
39+
</body>
40+
</html>

0 commit comments

Comments
 (0)