1 |
<html> |
2 |
<head> |
3 |
<title>Certificate of <c c="${subject.cn}"></c></title> |
4 |
<link rel="stylesheet" type="text/css" href="stylesheet.css"> |
5 |
</head> |
6 |
<body> |
7 |
<h1>Certificate of <c c="${subject.cn}"></c></h1> |
8 |
<div if="!${cert}"> |
9 |
<p class="topinfo-ok" if="${request}">This certificate is currently awaiting approval.</p> |
10 |
<p class="topinfo-bad" if="!${request}">This certificate is incomplete, please consider removing it.</p> |
11 |
</div> |
12 |
|
13 |
<table summary="certificate details" cellpadding="3"> |
14 |
<tr> |
15 |
<th class="name">Name</th> |
16 |
<td class="name"> |
17 |
<span c="${subject.cn}"></span> <tt c="${subject.e}"></tt> |
18 |
</td> |
19 |
</tr> |
20 |
<tr> |
21 |
<th class="org">Organisation</th> |
22 |
<td class="org" c="${subject.o}"></td> |
23 |
</tr> |
24 |
<tr if="${issuer}"> |
25 |
<th class="issuer">Issuer</th> |
26 |
<td class="issuer" c="${issuer.cn}"></td> |
27 |
</tr> |
28 |
<tr if="${cert.sn}"> |
29 |
<th class="serial">Serial</th> |
30 |
<td class="serial"><a href="https://ca.dutchgrid.nl/medium/query/?id=${cert.sn}" c="${cert.sn}"></a></td> |
31 |
</tr> |
32 |
<tr> |
33 |
<th class="validity">Valid</th> |
34 |
<td class="validity"> |
35 |
<span if="${valid.notbefore}"> |
36 |
from <c c="${valid.notbefore}"></c> |
37 |
</span> |
38 |
<span if="${valid.notafter}"> |
39 |
until <c c="${valid.notafter}"></c> |
40 |
</span> |
41 |
<span if="${valid}" class="valid" title="certificate is valid and can be used">✓</span> |
42 |
<span if="!${valid}" class="invalid" title="certificate is expired or revoked">✕</span> |
43 |
</td> |
44 |
</tr> |
45 |
<tr if="${usage}"> |
46 |
<th class="usage">Usage</th> |
47 |
<td class="usage"> |
48 |
<span if="${usage.any}" title="usable for anything">any,</span> |
49 |
<span if="${usage.clientauth}" title="usable for client authentication like in a web browser">Client authentication,</span> |
50 |
<span if="${usage.emailprotection}" title="usable for signing and encrypting emails">Email protection,</span> |
51 |
</td> |
52 |
</tr> |
53 |
<tr> |
54 |
<th class="vo">VOs</th> |
55 |
<td class="vo"> |
56 |
<a href="https://voms.grid.sara.nl:8443/voms/pvier/">pvier</a>, |
57 |
<a href="https://voms.grid.sara.nl:8443/voms/ncf">ncf</a>, |
58 |
<i>pending:</i> |
59 |
<a href="https://voms.grid.sara.nl:8443/voms/vlemed" class="pending">vlemed</a> |
60 |
</td> |
61 |
</tr> |
62 |
|
63 |
</table> |
64 |
|
65 |
</body> |
66 |
</html> |