]> WPIA git - gigi.git/blob - src/club/wpia/gigi/pages/wot/VerificationForm.templ
540faaae045aca984f7bf511bb6ac55c10294dd2
[gigi.git] / src / club / wpia / gigi / pages / wot / VerificationForm.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="verifiedName" 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 Country?></td>
24                 <td>
25                         <?=$countryCode?>
26                 </td>
27         </tr>
28         <tr>
29                 <td><?=_Location?></td>
30                 <td><input class="form-control" type="text" name="location" value="<?=$location?>" required></td>
31         </tr>
32         <tr>
33                 <td><?=_Date?></td>
34                 <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>
35         </tr>
36         <tr>
37                 <td><input type="checkbox" name="assertion" value="1" required></td>
38                 <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>
39         </tr>
40         <tr>
41                 <td><input type="checkbox" name="rules" value="1" required></td>
42                 <td><?=_I have read and understood the Terms of Service (!(/policy/ToS)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>
43         </tr>
44         <tr>
45                 <td><?=_Policy?>: </td>
46                 <td>
47                         <?=_!(/policy/ToS)Terms of Service!'</a>'?>
48                          - <?=_!(/policy/verification)Verification Policy!'</a>'?></a>
49                          - <?=_!(/wiki/verificationHandbook)Verification Handbook!'</a>'?></a>
50                 </td>
51         </tr>
52         <tr>
53                 <td><?=_Points?></td>
54                 <td><input class="form-control" type="text" name="points" required><br/>(Max. <?=$maxpoints?>)</td>
55         </tr>
56         <tr>
57                 <td><?=_Type?></td>
58                 <td><select name="verificationType"><? foreach($ats) { ?><option value="<?=$id?>"<?=$sel?>><?=$type?></option><? } ?></select></td>
59         </tr>
60         <tr>
61                 <td><input type="checkbox" name="passwordReset" value="1" <? if($aword) { ?>checked<? } ?>></td>
62                 <td><?=_I have conducted a password reset with verification. The established "A-Word" is:?><input type="text" name="passwordResetValue" value="<? if($aword) { ?><?=$aword?><? } ?>"></td>
63         </tr>
64         <tr>
65                 <td colspan="2">
66                         <input class="btn btn-primary" type="submit" name="process" value="<?=_I confirm this verification?>" />
67                         <input class="btn btn-default" type="submit" name="cancel" value="<?=_Cancel?>" />
68                 </td>
69         </tr>
70         </tbody>
71 </table>