Jump to content

Recommended Posts

  • Moderators
Posted

Hi,

Can i show the login page instead of the default login message for protected content?

<?php
if(Auth::LoggedIn() == false)
{
  echo '<div class="mcright" id="error">Please login to view this page. You can login <a href="http://www.easyjetva.com/index.php/login">Here</a></div></div>';
  return;
}
?>

Posted
<?php
if(Auth::LoggedIn() == false)
{
  echo '<div class="mcright" id="error">Please login to view this page.';
  Template::Show('login_form.tpl');
  echo '</div></div>';
  return;
}
?>

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...