DK2/templates/pages/home.php
2024-10-03 16:25:25 -05:00

9 lines
304 B
PHP

<?php if (!user()): ?>
<h1>Welcome!</h1>
<a href="/auth/login" class="ui button primary">Login</a>
<a href="/auth/register" class="ui button secondary">Register</a>
<?php else: ?>
<h1 class="tooltip-click" data-tooltip-content="Hover-based tooltip">Home</h1>
<?= print_r(char()) ?>
<?php endif; ?>