## ## ## sample login page. ## ## This is called under the following circumstances: ## ## -- if the user goes to a protected sim page,and no trial is allowed ## ## In addition, the sim may be configured to go to this or another page ## under the following conditions. In those cases, the URL parameter ## FD_message is set to the value in parentheses ## ## -- if the user tries to login, but has a bad user/password (accessdenied) ## -- if a trial has expired (trialexpired) ## -- if a subscription has expired (trialexpired) ## -- after a user logs out (logout) ## -- if an internal error occurs while logging in (error) ## The next statement inserts javascript functions used by Broadcast into HTML #include("javascript.txt") The Oakland Baseball Simworld Join SBS Social Network #if ($WebInfo.getParameter("FD_message") == "logout")
Thank you for using the simulation. Please enter a username and password to play again. #elseif ($WebInfo.getParameter("FD_message")=="accessdenied")
Invalid username or password. Please try again. #elseif ($WebInfo.getParameter("FD_message")=="trialexpired")
Your trial subscription has expired. Please log in with a username and password. #elseif ($WebInfo.getParameter("FD_message")== "subscriptionexpired")
Your subscription has expired.Please log in with a username and password. #elseif ($WebInfo.getParameter("FD_message") == "error")
You were not able to log in due to an internal error. Please try again later. #else
Welcome to the simulation. #end