mirror of https://github.com/itflow-org/itflow
62 lines
2.0 KiB
PHP
62 lines
2.0 KiB
PHP
<?php
|
|
/*
|
|
* Client Portal
|
|
* Certificate listing for PTC / technical contacts
|
|
*/
|
|
|
|
header("Content-Security-Policy: default-src 'self'");
|
|
|
|
require_once "includes/inc_all.php";
|
|
|
|
if ($session_contact_primary == 0 && !$session_contact_is_technical_contact) {
|
|
header("Location: post.php?logout");
|
|
exit();
|
|
}
|
|
|
|
$certificates_sql = mysqli_query($mysqli, "SELECT certificate_id, certificate_name, certificate_domain, certificate_issued_by, certificate_expire FROM certificates WHERE certificate_client_id = $session_client_id AND certificate_archived_at IS NULL ORDER BY certificate_expire ASC");
|
|
?>
|
|
|
|
<h3>Web Certificates</h3>
|
|
<div class="row">
|
|
|
|
<div class="col-md-10">
|
|
|
|
<table class="table tabled-bordered border border-dark">
|
|
<thead class="thead-dark">
|
|
<tr>
|
|
<th>Certificate Name</th>
|
|
<th>FQDN</th>
|
|
<th>Issuer</th>
|
|
<th>Expiry</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
<?php
|
|
while ($row = mysqli_fetch_array($certificates_sql)) {
|
|
$certificate_name = nullable_htmlentities($row['certificate_name']);
|
|
$certificate_domain = nullable_htmlentities($row['certificate_domain']);
|
|
$certificate_issued_by = nullable_htmlentities($row['certificate_issued_by']);
|
|
$certificate_expire = nullable_htmlentities($row['certificate_expire']);
|
|
|
|
?>
|
|
|
|
<tr>
|
|
<td><?php echo $certificate_name; ?></td>
|
|
<td><?php echo $certificate_domain; ?></td>
|
|
<td><?php echo $certificate_issued_by; ?></td>
|
|
<td><?php echo $certificate_expire; ?></td>
|
|
</tr>
|
|
|
|
<?php } ?>
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php
|
|
require_once "includes/footer.php";
|