first draft webadmin-letsencrypt tpl
This commit is contained in:
parent
6b8128e861
commit
2fff30a658
1 changed files with 20 additions and 0 deletions
20
tpl/webadmin-letsencrypt.tpl.php
Normal file
20
tpl/webadmin-letsencrypt.tpl.php
Normal 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>";
|
||||
}
|
Loading…
Reference in a new issue