This commit is contained in:
reed%reedloden.com 2006-10-11 03:04:35 +00:00
Родитель 173fc0847f
Коммит eda8cfe2e1
1 изменённых файлов: 0 добавлений и 9 удалений

Просмотреть файл

@ -1,9 +0,0 @@
<?php if(!isset($_SESSION['User'])): ?>
<strong>Welcome, Guest!</strong>
<a href="<?php echo $html->url('/users/login'); ?>">Login</a>
<a href="<?php echo $html->url('/users/register'); ?>">Register</a>
<?php else: ?>
<strong>Welcome, <?php echo $_SESSION['User']['name']; ?>!</strong>
<a href="<?php echo $html->url('/users'); ?>">My Account</a>
<a href="<?php echo $html->url('/users/logout'); ?>">Logout</a>
<?php endif; ?>