%@ Language=VBScript %> <% 'Option Explicit ' ************************************** ' Name: Default login page, allows creating new account and/or signing-in ' File Name: combo.asp ' Description: allows users to register or login so that they can use glossary ' and other services ' Author: Andrew Gauvin (andrew_gauvin@yahoo.com) ' Date Created: November 8, 2001 by Andrew Gauvin ' Last Modified: ' Modifications: ' TODOs: ' - detect if user is already logged in. if so, redirect to requested page ' ************************************** ' ************************************** ' Include lib files ' ************************************** %> <% ' ************************************** ' Declare page-scoped variables ' ************************************** Dim gs_PageTitle '
|
<%= consts_SERVICE_NAME(gi_serviceID) %>: Sign in |
|
|
new users... Create an online account with Allen Resources to access <%= consts_SERVICE_NAME(gi_serviceID) %>. Just provide your email address and a password. That's it. The next time you access <%= consts_SERVICE_NAME(gi_serviceID) %> you can simply sign in. <% ' 27-JUL-2002 - Set by order form ' FMC 9/8/03: if session(email) is set, that means the user is logged in. ' therefore, register_express is used and the user is taken straight ' to the glossary. gs_email = session("email") if gs_email <> "" then gs_processPage = "register_express.asp" & "?service=" & gi_serviceID else '21 APRIL 2005 PBB 'Added the id= prameter gs_processPage = "register.asp" & "?service=" & gi_serviceID & "&id=" & gs_id end if %> <% ' 27-JUL-2002 - Set by order form gs_email = "" %> |
registered users... TestBank Customers Free Services <% gs_processPage = "login.asp" & "?service=" & gi_serviceID %> |