1 |
<html> |
2 |
<head> |
3 |
<title>Installation</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 |
<div class="wizard-page"> |
12 |
|
13 |
<div if="!${install.done}"> |
14 |
<p>Congratulations, your certificate has been approved and |
15 |
was retrieved from the Certification Authority. As a final step, you will want to |
16 |
install it into your webbrowser, <em c="${install.browser.desc}">your webbrowser</em> |
17 |
(<a href='action:changebrowser'>change browser</a>).</p> |
18 |
<p>Please follow these steps:</p> |
19 |
</div> |
20 |
|
21 |
<div if="${install.done}"> |
22 |
<p>Your certificate has been installed in a webbrowser in the past. If you want to |
23 |
reinstall the certificate into your webbrowser, |
24 |
<em c="${install.browser.desc}">your webbrowser</em> |
25 |
(<a href='action:changebrowser'>change browser</a>), follow these steps:</p> |
26 |
</div> |
27 |
|
28 |
|
29 |
<form> |
30 |
|
31 |
<ol if="${install.browser.certinst} and !${install.browser.certinst}!=manual"> |
32 |
<li>Press the <em>install</em> button to begin |
33 |
<input type='button' href='action:install(silent,password=${install.passwd})' value='install'/><br/> |
34 |
You may need to enter your private key password again</li> |
35 |
|
36 |
<!-- |
37 |
- Mozilla browsers |
38 |
--> |
39 |
|
40 |
<li if="${install.browser.certinst}==mozilla"> |
41 |
When an <em>Internet Security</em> dialog appears, choose <em>Allow</em>.</li> |
42 |
|
43 |
<li if="${install.browser.certinst}==mozilla"> |
44 |
If you have set a master password, enter it in the dialog that pops up.</li> |
45 |
|
46 |
<li if="${install.browser.certinst}==mozilla"> |
47 |
In the password dialog for the <em>certificate backup</em>, enter the |
48 |
password <tt id='passwd' c="${install.passwd}">tobaronetwothree</tt> |
49 |
Note that this a temporary password, and that it has been copied to |
50 |
your clipboard as well (use Ctrl-V to paste).</li> |
51 |
|
52 |
|
53 |
<!-- |
54 |
- Internet Explorer and other browsers using Windows keystore |
55 |
--> |
56 |
|
57 |
<li if="${install.browser.certinst}==system and ${os.name[0:3]}==Win"> |
58 |
The <em>Certificate Import Wizard</em> will appear, press <em>Next</em> twice.</li> |
59 |
|
60 |
<li if="${install.browser.certinst}==system and ${os.name[0:3]}==Win"> |
61 |
In the password field, enter the password |
62 |
<tt id='passwd' c="${install.passwd}">tobaronetwothree</tt> |
63 |
Note that this a temporary password, and that it has been copied to |
64 |
your clipboard as well (use Ctrl-V to paste).<br/> |
65 |
It is advised to <em>enable strong private key protection</em> |
66 |
for increased security.</li> |
67 |
|
68 |
<li if="${install.browser.certinst}==system and ${os.name[0:3]}==Win"> |
69 |
Press <em>Next</em> a couple of times, and <em>Finish</em>.</li> |
70 |
|
71 |
<li if="${install.browser.certinst}==system and ${os.name[0:3]}==Win"> |
72 |
If you enabled strong private key protection, confirm the keystore access |
73 |
by pressing <em>Ok</em>.</li> |
74 |
|
75 |
|
76 |
<!-- |
77 |
- Safari and other Mac OS keystore-aware browsers |
78 |
--> |
79 |
|
80 |
<li if="${install.browser.certinst}==system and ${os.name[0:3]}==Mac"> |
81 |
The <em>Add Certificates</em> dialog will appear, confirm that |
82 |
you want to import the certificate.</li> |
83 |
|
84 |
<li if="${install.browser.certinst}==system and ${os.name[0:3]}==Mac"> |
85 |
When the password of the PKCS#12 file to import is asked, |
86 |
enter <tt id='passwd' c="${install.passwd}">tobaronetwothree</tt> |
87 |
Note that this a temporary password.</li> |
88 |
|
89 |
<li if="${install.browser.certinst}==system and ${os.name[0:3]}==Mac"> |
90 |
If you have set a password for your keychain, enter it in the next |
91 |
dialog.</li> |
92 |
|
93 |
<!-- |
94 |
- Browsers that import by opening the PKCS#12 file directly |
95 |
--> |
96 |
|
97 |
<li if="${install.browser.certinst}==browser"> |
98 |
<em c="${install.browser.desc}">your webbrowser</em> will open a new window or tab.</li> |
99 |
|
100 |
<li if="${install.browser.certinst}==browser"> |
101 |
When the password of the PKCS#12 file to import is asked, |
102 |
enter <tt id='passwd' c="${install.passwd}">tobaronetwothree</tt> |
103 |
Note that this a temporary password, and that it has been copied to |
104 |
your clipboard as well (use |
105 |
<span if="${os.name[0:3]}!=Mac">Ctrl-V</span> |
106 |
<span if="${os.name[0:3]}==Mac">Command-V</span> |
107 |
to paste).</li> |
108 |
|
109 |
|
110 |
<!-- For all OSes --> |
111 |
|
112 |
<li>A message dialog will indicate if the operation succeeded.</li> |
113 |
|
114 |
</ol> |
115 |
|
116 |
|
117 |
<!-- |
118 |
- Browser unsupported, manual installation |
119 |
--> |
120 |
|
121 |
<p if="!${install.browser.certinst} or ${install.browser.certinst}==manual"> |
122 |
Automatic installation of your certificate is not supported for this webbrowser. |
123 |
You can do it manually by <a href="action:export">exporting</a> it to a PKCS#12 |
124 |
file, and importing the resulting file into your webbrowser. |
125 |
</p> |
126 |
|
127 |
|
128 |
</form> |
129 |
</div> |
130 |
|
131 |
</body> |
132 |
</html> |
133 |
|