10-17-2016, 03:32 AM
Also, there is no need for a logged in user to access
join.php
forgot_password.php
login.php
so you can add prior to #page-wrapper div the following
<?php
if ($user->isLoggedIn()) {
Redirect::to('account.php');
}
?>
join.php
forgot_password.php
login.php
so you can add prior to #page-wrapper div the following
<?php
if ($user->isLoggedIn()) {
Redirect::to('account.php');
}
?>