]> WPIA git - gigi.git/blob - src/org/cacert/gigi/pages/account/domain/PingConfigForm.templ
upd: un-localize OpenSSL-command-help
[gigi.git] / src / org / cacert / gigi / pages / account / domain / PingConfigForm.templ
1   <tr><th></th><th><?=_Verification mechanisms?></th></tr>
2
3   <tr>
4     <td class='domainPinglogFirstCell'><input type="checkbox" name="emailType" value="y"<?=$!mail?>></td>
5     <td><?=_Verify by sending an email to authoritative email addresses?> </td>
6   </tr>
7   <tr>
8     <td></td>
9     <td class='radio'>
10         <?=_Select the destination mail address:?><br/>
11         <? foreach($authEmails) { ?>
12         <input type="radio" id="email_<?=$i?>" name="email" value="<?=$i?>"<?=$!checked?>/>
13         <label for="email_<?=$i?>"><span class='name'><?=$email?>@<span class='exampleDomain'>example.org</span></span></label><div class='elements'></div>
14         <? } ?>
15         </td>
16   </tr>
17
18   <tr>
19     <td><input type="checkbox" name="DNSType" value="y"<?=$!dns?>></td>
20     <td><?=_Verify by reading DNS-TXT entries?> </td>
21   </tr>
22   <tr>
23     <td></td>
24     <td>
25         <?=_Please insert the following DNS TXT entry into the Zone-file of your domain:?><br/>
26         <pre>
27         <?=$tokenName?>._cacert._auth IN TXT <?=$tokenValue?>
28         </pre>
29     </td>
30   </tr>
31
32   <tr>
33     <td><input type="checkbox" name="HTTPType" value="y"<?=$!http?>></td>
34     <td><?=_Verify by reading HTTP-content?> </td>
35   </tr>
36   <tr>
37     <td></td>
38     <td>
39         <?=_Please make the following content available under ?><pre class='string'>http://<span class='exampleDomain'>example.org</span>/cacert-<?=$tokenName?>.txt</pre><br/>
40         <pre><?=$tokenValue?></pre>
41     </td>
42   </tr>
43
44   <tr>
45     <td><input type="checkbox" name="SSLType" value="y"<?=$!ssl?>></td>
46     <td><?=_Verify by searching for installed certificate.?> </td>
47   </tr>
48   <tr>
49     <td></td>
50     <td>
51         <?=_Please list up to four services using your certificate. You need to have one of them up and using a valid SomeCA certificate or a specific self-signed certificate in order to pass this test?>:
52         <?=_The self-signed certificate needs to contain your domain as CN and ${tokenValue} as organization unit. With $!{openSSLHelp} OpenSSL command line utilities can generate such a certificate.?>:
53         <table>
54         <? foreach($ssl-services){ ?>
55         <tr><td><select name='ssl-type-<?=$i?>'>
56                 <?foreach($ssl-types){ ?>
57           <option<?=$!selected?>><?=$name?></option><? } ?></select>
58         </td><td>Port: <input type='text' name='ssl-port-<?=$i?>' value='<?=$port?>'></td></tr>
59         <? } ?>
60         </table>
61     </td>
62   </tr>
63