1 |
wvengen |
523 |
<html> |
2 |
|
|
<head> |
3 |
|
|
<title>Verification form</title> |
4 |
|
|
<link rel="stylesheet" type="text/css" href="style.css"/> |
5 |
|
|
</head> |
6 |
|
|
<body> |
7 |
|
|
|
8 |
|
|
<div class="wizard-title" c="${wizard.title.html}"/> |
9 |
|
|
<div class="wizard-contents" c="${wizard.contents.html}"/> |
10 |
|
|
|
11 |
wvengen |
581 |
<!-- certificate present, can install --> |
12 |
wvengen |
523 |
<div class="wizard-page"> |
13 |
|
|
|
14 |
wvengen |
581 |
<p if="!${cert} and !${request.processed}"> |
15 |
|
|
Besides submitting your request for a certificate, you need |
16 |
|
|
to send a signed registration form to the Certification Authority |
17 |
|
|
by following these steps: |
18 |
|
|
</p> |
19 |
wvengen |
523 |
|
20 |
wvengen |
581 |
<p if="${cert} or ${request.processed}"> |
21 |
|
|
You have already gone through the following steps to verify your |
22 |
|
|
identity, they are shown for reference only. |
23 |
|
|
</p> |
24 |
|
|
|
25 |
wvengen |
523 |
<form> |
26 |
|
|
<ol> |
27 |
|
|
<li>Fill in the paper form <input type="button" value="display form" href="action:verificationform" /> |
28 |
|
|
<a class="helpbutton" href="action:toggle(wizard.show.help1)">(help)</a> |
29 |
|
|
<div class="help" if="${wizard.show.help1}"> |
30 |
|
|
Press the <i>display form</i> button, enter your personal details, |
31 |
|
|
and print it. Note that you can also leave one or more fields |
32 |
|
|
empty and write them on the printed form. |
33 |
|
|
The form will be used later to verify your identity. |
34 |
|
|
</div></li> |
35 |
|
|
<li>Obtain a signature from your Registration Authority |
36 |
|
|
<a class="helpbutton" href="action:toggle(wizard.show.help2)">(help)</a> |
37 |
|
|
<div class="help" if="${wizard.show.help2}"> |
38 |
|
|
You need to visit a Registration Authority, who will confirm |
39 |
|
|
that you are who you claim to be, and will sign the form that |
40 |
|
|
you printed in the previous step. Your Registration Authority is |
41 |
|
|
<a href="mailto:${org.ra.email}" c="${org.ra.name}">Someone</a> from |
42 |
|
|
<a href="${org.url}" c="${org.name}">Organisation</a><span if="${org.ra.address}">, |
43 |
|
|
<span c="${org.ra.address}"/></span>. |
44 |
|
|
(though you can visit |
45 |
|
|
<a href="https://ca.dutchgrid.nl/request/showra?o=${org}">another</a> |
46 |
|
|
as well).<br/> |
47 |
|
|
Do make sure to bring your proof-of-identity, like passport or driving license. |
48 |
|
|
</div></li> |
49 |
|
|
<li>Send the signed form to the Certification Authority |
50 |
|
|
<a class="helpbutton" href="action:toggle(wizard.show.help3)">(help)</a> |
51 |
|
|
<div class="help" if="${wizard.show.help3}"> |
52 |
|
|
After your have obtained a signature from the Registration Authority, |
53 |
|
|
please submit it to the Certification Authority by snail mail or fax |
54 |
|
|
(the address is displayed on the form). |
55 |
|
|
</div></li> |
56 |
|
|
<li>Wait until the request is processed |
57 |
|
|
<a class="helpbutton" href="action:toggle(wizard.show.help4)">(help)</a> |
58 |
|
|
<div class="help" if="${wizard.show.help4}"> |
59 |
|
|
When the Certification Authority receives the verification form, it |
60 |
|
|
takes up to three working days to process. When your request has |
61 |
wvengen |
581 |
been approved, you will receive an email. When you then start this |
62 |
|
|
program again, it will show what to do next.<br/> |
63 |
wvengen |
523 |
If the approval takes longer than three working days, you may |
64 |
|
|
contact the <a href="mailto:ca@dutchgrid.nl">DutchGrid CA</a>. |
65 |
|
|
</div></li> |
66 |
|
|
</ol> |
67 |
|
|
</form> |
68 |
|
|
|
69 |
|
|
</div> |
70 |
|
|
|
71 |
|
|
</body> |
72 |
|
|
</html> |
73 |
|
|
|