1 |
<html> |
2 |
<head> |
3 |
<title>Request a new certificate</title> |
4 |
<link rel="stylesheet" type="text/css" href="stylesheet.css"/> |
5 |
</head> |
6 |
<body> |
7 |
<h1>Request a new certificate</h1> |
8 |
|
9 |
|
10 |
<p if="!${request}">Please wait while your certificate is being generated and sent to the |
11 |
registration authority over the internet.</p> |
12 |
|
13 |
<p if="${request}">Your certificate has already been generated<span if="${request.submitted}"> |
14 |
and was sent to the registration authority over the internet</span>. |
15 |
<span if="!${request.submitted}">Please wait while your certificate is being sent to the |
16 |
registration authority over the internet.</span> |
17 |
</p> |
18 |
|
19 |
|
20 |
<form><table> |
21 |
<tr> |
22 |
<td><input type="checkbox" name="request" disabled="disabled"/></td> |
23 |
<td>Generate key pair</td> |
24 |
</tr> |
25 |
<tr> |
26 |
<td><input type="checkbox" name="request" disabled="disabled"/></td> |
27 |
<td>Generate certificate signing request</td> |
28 |
</tr> |
29 |
<tr> |
30 |
<td><input type="checkbox" name="request.submitted" disabled="disabled"/></td> |
31 |
<td>Submit certificate signing request to registration authority |
32 |
<i if="${cert} and !${request.submitted}">(done elsewhere)</i> |
33 |
</td> |
34 |
</tr> |
35 |
<tr if="${cert} or ${request.approved}"> |
36 |
<td><input type="checkbox" disabled="disabled" checked="checked"/></td> |
37 |
<td>Verify identity with |
38 |
<a href="mailto:${org.ra.email}" c="${org.ra.name}">**your agent**</a> |
39 |
of <a href="${org.url}" c="${org.name}">**agent organisation**</a> |
40 |
</td> |
41 |
</tr> |
42 |
<tr if="${cert} or ${request.submitted}"> |
43 |
<td><input type="checkbox" name="cert" disabled="disabled"/></td> |
44 |
<td>Download approved certificate</td> |
45 |
</tr> |
46 |
</table></form> |
47 |
|
48 |
|
49 |
<div if="!${cert}"> |
50 |
<p if="${request.submitted}">Your request has been generated and was |
51 |
uploaded to the registration authority. Now you need to print the form |
52 |
containing your personal details and certificate information, and bring |
53 |
it to your registration authority, |
54 |
<a href="mailto:${org.ra.email}" c="${org.ra.name}">**your agent**</a> |
55 |
of <a href="${org.url}" c="${org.name}">**agent organisation**</a>. |
56 |
Don't forget to bring your proof-of-identity, such as a passport or driving license.</p> |
57 |
<p if="${state.submitcsr}">To continue to printing the form, press <em>Next</em>.</p> |
58 |
</div> |
59 |
|
60 |
<div if="${cert}"> |
61 |
<p>To again print the verification form, press <em>Next</em>.</p> |
62 |
</div> |
63 |
|
64 |
|
65 |
</body> |
66 |
</html> |