Free Leadership Articles
Free Leadership Articles Log-In
Each Leadership Article is a brief adaptation from Dr. Eric Allenbaugh's
Deliberate Success: Realize Your Vision with Purpose, Passion, and Performance (Career Press, 2002).
Registration is required to access these informative, free publications. Please take a moment to complete your request below to continue to our 'Leadership Articles' download section.
Allenbaugh Associates respects your privacy. All information is confidential.
We will not disclose, sell or market your information.
/**
* User has already logged in, so display relavent links, including
* a link to the admin center if the user is an administrator.
*/
if($session->logged_in){
echo "Logged In"; echo "Welcome $session->username, you are logged in." ."[username\">My Account] " ."[Edit Account] "; if($session->isAdmin()){ echo "[Admin Center] "; } echo "[Logout]"; } else{ ?> Login/** * User not logged in, display the login form. * If user has already tried to login, but errors were * found, display the total number of errors. * If errors occurred, they will be displayed. */ if($form->num_errors > 0){ echo "".$form->num_errors." error(s) found"; } ?> } /** * Just a little page footer, tells how many registered members * there are, how many users currently logged in and viewing site, * and how many guests viewing site. Active users are displayed, * with link to their user information. */ echo " |
"; echo "Member Total: ".$database->getNumMembers()." "; echo "There are $database->num_active_users registered members and "; echo "$database->num_active_guests guests viewing the site. "; include("include/view_active.php"); ?> |