servnest/public/index.php

29 lines
737 B
PHP
Raw Normal View History

<?php require "../common/html.php"; ?>
2021-01-22 21:58:46 +01:00
2021-05-14 21:10:56 +02:00
<dl>
<dt><a class="auth" href="auth/"><?= TITLES['auth']['index'] ?></a></dt>
2022-06-06 23:14:50 +02:00
<dd>
<?= DESCRIPTIONS['auth']['index'] ?>
2022-06-06 23:14:50 +02:00
</dd>
2022-06-12 00:04:18 +02:00
<?php if(CONF['reg']['enabled'] === true) { ?>
<dt><a class="reg" href="reg/"><?= TITLES['reg']['index'] ?></code></a></dt>
2022-04-18 16:05:00 +02:00
<dd>
<?= DESCRIPTIONS['reg']['index'] ?>
2022-04-18 16:05:00 +02:00
</dd>
2022-06-12 00:04:18 +02:00
<?php } ?>
<?php if(CONF['ns']['enabled'] === true) { ?>
<dt><a class="ns" href="ns/"><?= TITLES['ns']['index'] ?></a></dt>
2022-04-18 16:05:00 +02:00
<dd>
<?= DESCRIPTIONS['ns']['index'] ?>
2022-04-18 16:05:00 +02:00
</dd>
2022-06-12 00:04:18 +02:00
<?php } ?>
<?php if(CONF['ht']['enabled'] === true) { ?>
<dt><a class="ht" href="ht/"><?= TITLES['ht']['index'] ?></a></dt>
2022-04-18 16:05:00 +02:00
<dd>
<?= DESCRIPTIONS['ht']['index'] ?>
2022-04-18 16:05:00 +02:00
</dd>
2022-06-12 00:04:18 +02:00
<?php } ?>
2021-05-14 21:10:56 +02:00
</dl>
2021-01-22 21:58:46 +01:00
<?php closeHTML(); ?>