]> WPIA git - gigi.git/blob - src/org/cacert/gigi/pages/wot/AssuranceForm.templ
297397c62e34fccba775503310d42721b6044bc3
[gigi.git] / src / org / cacert / gigi / pages / wot / AssuranceForm.templ
1         <table class="table">
2 <thead>
3 <tr><th colspan="2"><?=_Verification Confirmation?></th></tr>
4 </thead>
5 <tbody>
6 <tr><td colspan="2"><?=_Please check the following details match against what you witnessed when you met ${name} in person. You MUST NOT proceed unless you are sure the details are correct. You may be held responsible by the SomeCA Arbitrator for any issues with this Verification.?>
7 </td></tr>
8 <? foreach($names) { ?>
9         <tr>
10                 <td><?=_Name?>: </td>
11                 <td><input type="checkbox" name="assuredName" value="<?=$nameId?>"<?=$checked?>><span class="accountdetail"><?=$nameExplicit?></span></td>
12         </tr>
13 <? } ?>
14         <tr>
15                 <td><?=_Date of Birth?>: </td>
16                 <td><span class="accountdetail dob"><?=$dob?> (<?=$dobFmt2?>)</span></td>
17         </tr>
18         <tr>
19                 <td><input type="checkbox" name="certify" value="1" required></td>
20                 <td><?=_I certify that ${name} has appeared in person.?></td>
21         </tr>
22         <tr>
23                 <td><?=_Location?></td>
24                 <td><input class="form-control" type="text" name="location" value="<?=$location?>" required></td>
25         </tr>
26         <tr>
27                 <td><?=_Date?></td>
28                 <td><input class="form-control" type="text" name="date" value="<?=$date?>" required><br/><?=_The date when the verification took place. Please adjust the date if you verified the person on a different day (YYYY-MM-DD).?></td>
29         </tr>
30         <tr>
31                 <td><input type="checkbox" name="assertion" value="1" required></td>
32                 <td><?=_I believe that the assertion of identity I am making is correct, complete and verifiable. I have seen original documentation attesting to this identity. I accept that the SomeCA Arbitrator may call upon me to provide evidence in any dispute, and I may be held responsible.?></td>
33         </tr>
34         <tr>
35                 <td><input type="checkbox" name="rules" value="1" required></td>
36                 <td><?=_I have read and understood the Terms of Service (!'<a href="/policy/TermsOfService.html">'ToS!'</a>'), Verification Policy and the Verification Handbook. I am making this verification subject to and in compliance with the ToS, Verification Policy and Handbook.?></td>
37         </tr>
38         <tr>
39                 <td><?=_Policy?>: </td>
40                 <td>
41                         <a href="/policy/TermsOfService.html" target="_blank"><?=_Terms of Service?></a>
42                          - <a href="/policy/AssurancePolicy.php" target="_blank"><?=_Verification Policy?></a>
43                          - <a href="http://wiki.cacert.org/AssuranceHandbook2" target="_blank"><?=_Verification Handbook?></a>
44                 </td>
45         </tr>
46         <tr>
47                 <td><?=_Points?></td>
48                 <td><input class="form-control" type="text" name="points" required><br/>(Max. <?=$maxpoints?>)</td>
49         </tr>
50         <tr>
51                 <td><?=_Type?></td>
52                 <td><select name="assuranceType"><? foreach($ats) { ?><option value="<?=$id?>"<?=$sel?>><?=$type?></option><? } ?></select></td>
53         </tr>
54         <tr>
55                 <td><input type="checkbox" name="passwordReset" value="1" <? if($aword) { ?>checked<? } ?>></td>
56                 <td><?=_I have conducted a password reset with verification. The established "A-Word" is:?><input type="text" name="passwordResetValue" value="<? if($aword) { ?><?=$aword?><? } ?>"></td>
57         </tr>
58         <tr>
59                 <td colspan="2">
60                         <input type="submit" name="process" value="<?=_I confirm this verification?>" />
61                         <input type="submit" name="cancel" value="<?=_Cancel?>" />
62                 </td>
63         </tr>
64         </tbody>
65 </table>