mirror of
https://github.com/casjaysdevdocker/tor
synced 2025-10-14 02:02:18 -04:00
Dockerfile README.md rootfs/tmp/etc/nginx/nginx.conf rootfs/tmp/etc/nginx/vhosts.d/admin.conf rootfs/usr/local/bin/entrypoint.sh rootfs/usr/local/etc/docker/init.d/99-php-fpm.sh rootfs/usr/local/share/
17 lines
796 B
PHP
17 lines
796 B
PHP
<nav class="nav">
|
|
<a href="index.php" <?php echo ($current_page === 'dashboard') ? 'class="active"' : ''; ?>>
|
|
📊 Dashboard
|
|
</a>
|
|
<a href="config.php" <?php echo ($current_page === 'config') ? 'class="active"' : ''; ?>>
|
|
⚙️ Configuration
|
|
</a>
|
|
<a href="hidden.php" <?php echo ($current_page === 'hidden') ? 'class="active"' : ''; ?>>
|
|
🧅 Hidden Services
|
|
</a>
|
|
<a href="logs.php" <?php echo ($current_page === 'logs') ? 'class="active"' : ''; ?>>
|
|
📝 Logs
|
|
</a>
|
|
<a href="tokens.php" <?php echo ($current_page === 'tokens') ? 'class="active"' : ''; ?>>
|
|
🔑 API Tokens
|
|
</a>
|
|
</nav>
|