]> WPIA git - gigi.git/blob - src/club/wpia/gigi/pages/main/CertStatusForm.templ
add: certificate status check via web form
[gigi.git] / src / club / wpia / gigi / pages / main / CertStatusForm.templ
1 <p>
2 <?=_This form allows you to check the status of a certificate.?>
3 <?=_You may upload the certificate as PEM or may identify the certificate by its serial.?>
4 </p>
5
6 <table class="table">
7   <tbody>
8   <tr>
9     <td><?=_Certificate?>: </td>
10     <td>
11       <textarea class="form-control" name="cert" rows="3" cols="40" placeholder="<?=_Certificate?>"></textarea>
12     </td>
13     <td><?=_or serial number:?></td>
14     <td>
15       <input type="text" class="form-control" name="serial" placeholder="<?=_Certificate Serial Number (hexadecimal)?>">
16     </td>
17   </tr>
18   <tr>
19     <td colspan="4"><input class="btn btn-primary" type="submit" name="process" value="<?=_Next?>"></td>
20   </tr>
21   </tbody>
22 </table>