";
echo "
";
echo "Which client?";
echo "";
$checkCL_id = auth_client($CLfname, $CLlname, $userCLpassword);
if (empty($checkCL_id))
{
unset($_SESSION['CLlname']);
unset($_SESSION['userCLpassword']);
unset($_SESSION['CLfname']);
echo "";
echo "Authorization failed. ";
echo "You must enter a valid user name and password combination.
";
echo "Click on the following link to try again.
\n";
echo "Log in!
\n";
echo "If you're not registered as a third party with us, click " . "here " ;
echo "If you're not registered as a client with us, click " . "here " ;
echo "to register!";
exit;
}
else
{
$_SESSION['userCLid']=$checkCL_id;
echo "";
echo "Welcome, ";
echo $_SESSION['userCLid'];
echo "!
\n" . "Click " . "here " . "to log out.
";
echo "To modify your registration info, click " . " here.";
echo "
";
echo "To change your password, click " . " here.";
echo "
";
echo "
If you want to check available appointments, click ";
echo "here.";
exit;
}
echo "Appointment booking method Patent Pending
";
echo "";
?>