servnest/public/index.php

29 lines
737 B
PHP

<?php require "../common/html.php"; ?>
<dl>
<dt><a class="auth" href="auth/"><?= TITLES['auth']['index'] ?></a></dt>
<dd>
<?= DESCRIPTIONS['auth']['index'] ?>
</dd>
<?php if(CONF['reg']['enabled'] === true) { ?>
<dt><a class="reg" href="reg/"><?= TITLES['reg']['index'] ?></code></a></dt>
<dd>
<?= DESCRIPTIONS['reg']['index'] ?>
</dd>
<?php } ?>
<?php if(CONF['ns']['enabled'] === true) { ?>
<dt><a class="ns" href="ns/"><?= TITLES['ns']['index'] ?></a></dt>
<dd>
<?= DESCRIPTIONS['ns']['index'] ?>
</dd>
<?php } ?>
<?php if(CONF['ht']['enabled'] === true) { ?>
<dt><a class="ht" href="ht/"><?= TITLES['ht']['index'] ?></a></dt>
<dd>
<?= DESCRIPTIONS['ht']['index'] ?>
</dd>
<?php } ?>
</dl>
<?php closeHTML(); ?>