]> WPIA git - gigi.git/blob - src/club/wpia/gigi/pages/wot/VerificationForm.templ
add: ensure that for TTPAgent action there is a valid TTPAgent Challenge
[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 ${appName} Arbitrator for any issues with this Verification.?>
7 </td></tr>
8 <? foreach($names) { ?>
9         <tr>
10                 <td><?=_Name?>: </td>
11                 <td><label><input type="checkbox" name="verifiedName" value="<?=$nameId?>"<?=$checked?>><span class="accountdetail"><?=$nameExplicit?></span></label></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" id="certify" value="1" required></td>
20                 <td><label for="certify"><?=_I certify that ${name} has appeared in person.?></label></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" id="assertion" value="1" required></td>
38                 <td><label for="assertion"><?=_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 ${appName} Arbitrator may call upon me to provide evidence in any dispute, and I may be held responsible.?></label></td>
39         </tr>
40         <tr>
41                 <td><input type="checkbox" name="rules" id="rules" value="1" required></td>
42                 <td><label for="rules"><?=_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.?></label></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                          - <?=_!(/kb/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>
59                         <? if($ttpinfo) { ?></br><?=_To act as TTP Agent you need to pass the TTP RA Agent Challenge.?><? } ?>
60                 </td>
61         </tr>
62         <tr>
63                 <td><input type="checkbox" name="passwordReset" id="passwordReset" value="1" <? if($aword) { ?>checked<? } ?>></td>
64                 <td><label for="passwordReset"><?=_I have conducted a password reset with verification. The established "A-Word" is:?><input type="text" name="passwordResetValue" value="<? if($aword) { ?><?=$aword?><? } ?>"></label></td>
65         </tr>
66         <tr>
67                 <td colspan="2">
68                         <input class="btn btn-primary" type="submit" name="process" value="<?=_I confirm this verification?>" />
69                         <input class="btn btn-default" type="submit" name="cancel" value="<?=_Cancel?>" />
70                 </td>
71         </tr>
72         </tbody>
73 </table>