Login form -- Question

Nabeel, thanks in advance for the great script you have here. 

I was wondering how I would go about showing a login form on the main page only when they aren’t logged in.  If they are logged in, I would like to fill that space with a mini “control panel” type content (such as pilot name, pilot hours, hub, etc.).

How would I go about this?

Hey,

There’s a few threads if you do a search, basically it’s doing:

<?php
if(Auth::LoggedIn() == false)
{ ?>

<form>
</form>
<?php
}
?>

etc. If you look at some of the existing templates you’ll be able too figure it out pretty easily

Hey thanks a lot, Nabeel for the quick response.