]> WPIA git - gigi.git/blob - src/org/cacert/gigi/pages/admin/support/FindCertForm.templ
add: enable support to search for certificates
[gigi.git] / src / org / cacert / gigi / pages / admin / support / FindCertForm.templ
1 <table class="table">
2   <tbody><tr>
3     <th colspan="2"><?=_Find Certificate?></th>
4   </tr>
5
6   <tr>
7     <td><?=_Search for?>:</td>
8     <td>
9        <input type="radio" name="certType" value="serial" <?=$serial?>> <?=_Serial Number?></input>
10        <input type="radio" name="certType" value="email" <?=$email?>> <?=_Email Address?></input>
11        <input type="radio" name="certType" value="DNS" <?=$dns?>> <?=_Domain?></input>
12     </td>
13   </tr>
14
15   <tr>
16     <td><?=_Data?>:</td>
17     <td><input class="form-control" name="cert" value="" size="30" title="<?=_use % as wildcard?>" placeholder="<?=_use % as wildcard?>" type="text" required/></td>
18   </tr>
19
20   <tr>
21     <td colspan="2"><input class="btn btn-primary" name="process" value="<?=_Next?>" type="submit"/></td>
22   </tr>
23 </tbody></table>