1
|
<!DOCTYPE html>
|
2
|
<html lang="en">
|
3
|
<head>
|
4
|
<meta charset="UTF-8">
|
5
|
<title>X.509 Certificate Management</title>
|
6
|
<link rel="stylesheet" href="/static/css/bootstrap.min.css">
|
7
|
</head>
|
8
|
<body>
|
9
|
<div id="certificateListingPage" class="p-4">
|
10
|
<div>
|
11
|
<h1 class="ml-2 d-inline-block">Certificate Listing</h1>
|
12
|
<a class="btn btn-success ml-4 mb-3" href="/static/create_certificate.html">Create certificate</a>
|
13
|
</div>
|
14
|
|
15
|
<table class="table table-striped table-hover text-center">
|
16
|
<thead class="thead-dark">
|
17
|
<tr>
|
18
|
<th class="align-middle" scope="col" rowspan="2">Common name</th>
|
19
|
<th class="align-middle" scope="col" colspan="2">Validity</th>
|
20
|
<th class="align-middle" scope="col" rowspan="2">Usage</th>
|
21
|
<th class="align-middle" scope="col" rowspan="2">Certificate</th>
|
22
|
<th class="align-middle" scope="col" rowspan="2">Trust chain</th>
|
23
|
<th class="align-middle" scope="col" rowspan="2">Chain root</th>
|
24
|
</tr>
|
25
|
<tr>
|
26
|
<th scope="col">Start</th>
|
27
|
<th scope="col">End</th>
|
28
|
</tr>
|
29
|
</thead>
|
30
|
<tbody>
|
31
|
<tr is="certificate-item"
|
32
|
v-for="certificate in certificates"
|
33
|
v-bind:certificate="certificate"
|
34
|
v-bind:key="certificate.id">
|
35
|
</tr>
|
36
|
</tbody>
|
37
|
</table>
|
38
|
</div>
|
39
|
|
40
|
<script src="https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js"></script>
|
41
|
<script src="/static/js/jquery-3.6.0.min.js"></script>
|
42
|
<script src="/static/js/bootstrap.bundle.min.js"></script>
|
43
|
<script src="/static/js/axios.min.js"></script>
|
44
|
<script src="/static/js/constants.js"></script>
|
45
|
<script src="/static/js/utilities.js"></script>
|
46
|
<script src="/static/js/components.js"></script>
|
47
|
<script src="/static/js/index.js"></script>
|
48
|
|
49
|
</body>
|
50
|
</html>
|