]> WPIA git - gigi.git/blob - src/org/cacert/gigi/pages/admin/support/FindUserByEmailForm.templ
upd: change the find user routine to search for all email addresses
[gigi.git] / src / org / cacert / gigi / pages / admin / support / FindUserByEmailForm.templ
1 <? if($usertable) {?>
2 <p>Multiple users where found.</p>
3 <table class="table">
4 <tr>
5 <th>Id</th><th>E-Mail</th></tr>
6 <? foreach($usertable) {?>
7         <tr><td><a href="/support/user/<?=$usrid?>"><?=$usrid?></a></td><td><a href="/support/user/<?=$usrid?>"><?=$usermail?></a></td></tr>
8 <? } ?>
9 </table>
10 <? } ?>
11 <? if($first) {?>
12 <table class="table">
13   <tbody><tr>
14     <th colspan="2"><?=_Find User by Email?></th>
15   </tr>
16   <tr>
17     <td><?=_Email?>:</td>
18     <td><input class="form-control" name="email" value="" size="30" title="<?=_use % as wildcard?>" placeholder="<?=_use % as wildcard?>" type="text"/></td>
19   </tr>
20   <tr>
21     <td colspan="2"><input name="process" value="<?=_Next?>" type="submit"/></td>
22   </tr>
23 </tbody></table>
24 <? } ?>