first draft webadmin-letsencrypt tpl

This commit is contained in:
Nicolas Roman 2019-06-06 18:20:27 +02:00
parent 6b8128e861
commit 2fff30a658

View file

@ -0,0 +1,20 @@
<h2>Gestion Let's Encrypt</h2>
<?php
if (count($_SESSION['letsencrypt-domains']) > 0) {
?>
<p>Liste des domaines à intégrer dans le certificat : </p>
<ul>
<?php
foreach ($_SESSION['letsencrypt-domains'] as $domain) {
echo '<li>' . $domain . '</li>';
}
?>
</ul>
<?php
} else {
print "<p>Aucun domaine.</p>";
}