]> WPIA git - gigi.git/blob - src/org/cacert/gigi/pages/account/CertificateIssueForm.templ
Fix html conformance for the "explained radio button" forms.
[gigi.git] / src / org / cacert / gigi / pages / account / CertificateIssueForm.templ
1 <h3><?=_CAcert Certificate Acceptable Use Policy?></h3>
2 <p><?=_I hereby represent that I am fully authorized by the owner of the information contained in the CSR sent to CAcert Inc. to apply for an Digital Certificate for secure and authenticated electronic transactions. I understand that a digital certificate serves to identify the Subscriber for the purposes of electronic communication and that the management of the private keys associated with such certificates is the responsibility of the subscriber's technical staff and/or contractors.?></p>
3
4 <p><?=_CAcert Inc.'s public certification services are governed by a CPS as amended from time to time which is incorporated into this Agreement by reference. The Subscriber will use the SSL Server Certificate in accordance with CAcert Inc.'s CPS and supporting documentation published at?> <a href="http://www.cacert.org/cps.php">http://www.cacert.org/cps.php</a></p>
5
6 <p><?=_If the Subscriber's name and/or domain name registration change the subscriber will immediately inform CAcert Inc. who shall revoke the digital certificate. When the Digital Certificate expires or is revoked the company will permanently remove the certificate from the server on which it is installed and will not use it for any purpose thereafter. The person responsible for key management and security is fully authorized to install and utilize the certificate to represent this organization's electronic presence.?></p>
7
8 <table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper dataTable">
9   <thead>
10   <tr>
11     <th colspan="2" class="title"><?=_New Certificate?></th>
12   </tr>
13   </thead>
14   <tbody>
15   <tr>
16     <td>
17     <label for='profile'><?=_Key type?></label>
18     </td>
19     <td>
20     <select name="profile" id='profile'>
21     <? foreach($profiles) { ?>
22       <option value="<?=$key?>"<?=$!selected?>><?=$name?></option>
23     <? } ?>
24     </select>
25     </td>
26   </tr>
27   <tr>
28     <td>
29     <label for='CN'><?=_Your name?></label>
30     </td>
31     <td><input type='text' id='CN' name='CN' value='<?=$CN?>'></td>
32   </tr>
33   <tr>
34     <td>SANs</td>
35     <td align="left"><textarea rows='5' name='SANs' placeholder="dns:my.domain.example.com, dns:*.example.com, email:my.email@example.com (or newline separated)"><?=$emails?></textarea></td>
36   </tr>
37
38   <tr class="expertoff">
39     <td class='check'>
40       <input type="checkbox" id="expertbox" name="expertbox"/>
41     </td>
42     <td align="left">
43       <label for="expertbox"><?=_Show advanced options?></label>
44     </td>
45   </tr>
46
47   <tr class="expert">
48         <td><?=_Hash algorithm for signing?></td>
49     <td class='radio'>
50       <? foreach($hashs) { ?>
51         <input type="radio" id="hash_alg_<?=$algorithm?>" name="hash_alg" value="<?=$algorithm?>"<?=$!checked?>/>
52         <label for="hash_alg_<?=$algorithm?>"><span class='name'><?=$name?></span><? if($info) { ?> <span class='addinfo'> <?=$info?></span><? } ?></label><div class='elements'></div>
53       <? } ?>
54     </td>
55   </tr>
56   <tr class="expert">
57     <td><?=_Valid period?></td>
58     <td>
59         <?=$validity?>
60     </td>
61   </tr>
62     <tr>
63     <td class='check'>
64       <input type="checkbox" id="CCA" name="CCA" />
65     </td>
66     <td align="left">
67       <label for="CCA"><strong><?=s,$!CCA,I accept the CAcert Community Agreement (%s).?> </strong><br />
68       <?=_Please note: You need to accept the CCA to proceed.?></label>
69     </td>
70   </tr>
71   <tr><td colspan='2'>&nbsp;</td></tr>
72
73   <tr>
74     <td class='check'>
75       <input type="checkbox" id="login" name="login" value="1" checked="checked" />
76     </td>
77     <td align="left">
78       <label for="login"><?=_Enable certificate login with this certificate?><br />
79       <?=_By allowing certificate login, this certificate can be used to login into this account at https://secure.cacert.org/ .?></label>
80     </td>
81   </tr>
82   <tr>
83     <td colspan="2" align="left">
84       <label for="description"><?=_Optional comment, only used in the certificate overview?></label><br />
85       <input type="text" id="description" name="description" maxlength="100" size="100" />
86     </td>
87   </tr>
88
89   <tr>
90     <td colspan="2"><input type="submit" name="process" value="<?=_Issue Certificate?>" /></td>
91   </tr>
92   </tbody>
93 </table>