servnest/public/index.php

29 lines
737 B
PHP
Raw Normal View History

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