2024-09-28 18:33:17 -05:00
|
|
|
<?php if (!user()): ?>
|
2024-10-03 16:25:25 -05:00
|
|
|
<h1>Welcome!</h1>
|
|
|
|
<a href="/auth/login" class="ui button primary">Login</a>
|
|
|
|
<a href="/auth/register" class="ui button secondary">Register</a>
|
2024-09-27 18:45:33 -05:00
|
|
|
<?php else: ?>
|
2024-10-12 18:39:28 -05:00
|
|
|
<h1>Home</h1>
|
|
|
|
<p>Welcome, <?= user('username') ?>!</p>
|
2024-09-27 18:45:33 -05:00
|
|
|
<?php endif; ?>
|