]> WPIA git - gigi.git/blob - src/org/cacert/gigi/pages/account/CertificateIssueForm.templ
7d28f2c1e3d432a5cb9bd9d5b24e1b3720e316cf
[gigi.git] / src / org / cacert / gigi / pages / account / CertificateIssueForm.templ
1 <h3><?=_CAcert Certificate Acceptable Use Policy?></h3>
2 <p><?=_Once you decide to subscribe for an SSL Server Certificate you will need to complete this agreement. Please read it carefully. Your Certificate Request can only be processed with your acceptance and understanding of this agreement.?></p>
3
4 <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>
5
6 <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>
7
8 <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>
9
10 <table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper dataTable">
11   <thead>
12   <tr>
13     <th colspan="2" class="title"><?=_New Certificate?></th>
14   </tr>
15   </thead>
16   <tbody>
17   <tr>
18     <td>
19     </td>
20     <td>
21     <?=_Key type?>: 
22     <select name="profile">
23     <? foreach($profiles) { ?>
24       <option value="<?=$key?>"<?=$!selected?>><?=$name?></option>
25     <? } ?>
26     </select>
27     </td>
28   </tr>
29   <tr>
30     <td><?=_Your name?></td>
31     <td><input type='text' 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 <? if($points50) { ?>
39   <tr>
40     <td colspan="2" align="left">
41       <input type="radio" id="incname0" name="incname" value="0" checked="checked" />
42         <label for="incname0"><?=_No Name?></label><br />
43         <input type="radio" id="incname1" name="incname" value="1" />
44         <label for="incname1"><?=_Include?> 'fnamelname'</label><br />
45     </td>
46   </tr>
47 <? } ?>
48
49
50   <tr class="expertoff">
51     <td>
52       <input type="checkbox" id="expertbox" name="expertbox"/>
53     </td>
54     <td align="left">
55       <label for="expertbox"><?=_Show advanced options?></label>
56     </td>
57   </tr>
58
59   <tr class="expert">
60     <td colspan="2" align="left">
61       <?=_Hash algorithm used when signing the certificate:?><br />
62       <? foreach($hashs) { ?>
63         <input type="radio" id="hash_alg_<?=$algorithm?>" name="hash_alg" value="<?=$algorithm?>"<?=$checked?>/>
64         <label for="hash_alg_<?=$algorithm?>"><?=$name?><? if($info) { ?> - <?=$info?><? } ?></label><br />
65       <? } ?>
66     </td>
67   </tr>
68   <tr><td colspan='2'>&nbsp;</td></tr>
69   <tr>
70     <td>
71       <input type="checkbox" id="login" name="login" value="1" checked="checked" />
72     </td>
73     <td align="left">
74       <label for="login"><?=_Enable certificate login with this certificate?><br />
75       <?=_By allowing certificate login, this certificate can be used to login into this account at https://secure.cacert.org/ .?></label>
76     </td>
77   </tr>
78   <tr>
79     <td colspan="2" align="left">
80       <label for="description"><?=_Optional comment, only used in the certificate overview?></label><br />
81       <input type="text" id="description" name="description" maxlength="100" size="100" />
82     </td>
83   </tr>
84
85   <tr>
86     <td>
87       <input type="checkbox" id="CCA" name="CCA" />
88     </td>
89     <td align="left">
90       <label for="CCA"><strong><?=s,$!CCA,I accept the CAcert Community Agreement (%s).?> </strong><br />
91       <?=_Please note: You need to accept the CCA to proceed.?></label>
92     </td>
93   </tr>
94   <tr>
95     <td colspan="2"><input type="submit" name="process" value="<?=_Issue Certificate?>" /></td>
96   </tr>
97   </tbody>
98 </table>