% '************************************************************************* ' ASP Scripting: ' Filename: login_page.asp ' Written by: Wilbert Madarang ' Date: January 3, 2002 '************************************************************************* ' Description: The Main Login Page '************************************************************************* ' Revision History: ' 1.0 Modified by WM on May 10, 2003 ' Converted reference to template_login_page.asp to ' PrintLoginForm function ' NOTES: There will now be two entry points for the login page. ' Regular login -> user_management_change_account_information.asp ' Checkout login -> checkout_manager.asp ' DESIGN NOTES: Basic behaviour of login page is assumed to be Regular login mode. ' However, this can be overwridden by changing mode, or by ' changing strSuccessUrl, strFailUrl '************************************************************************* %> <% '****************************************** ' GLOBAL VARIABLES '****************************************** Dim strSuccessUrl, strFailUrl strSuccessUrl = Request( "success_url" ) strFailUrl = Request( "fail_url" ) If ( strSuccessUrl = "" OR IsNull( strSuccessUrl) ) Then strSuccessUrl = "user_management_change_account_information.asp" End If If ( strFailUrl = "" OR IsNull( strFailUrl ) ) Then strFailUrl = "login_page.asp" End If %>
|
Welcome Back to Charister Home Fashion Please login to update existing account information. <% Call PrintLoginForm %> |