Count Lines in Pages

Contents of Page: login.asp Number of Lines: 124 Last Modified: 2/13/2025 12:39:23 PM
0001: <% @Language = "VBScript" %>
0002: 
0003: <!-- #include FILE="include/adovbs.inc" -->
0004: <!-- #include FILE="include/homeURL.inc" -->
0005: <!-- #include FILE="include/constants.inc" -->
0006: 
0007: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
0008: 
0009: <%
0010: 	from = Request.QueryString("from")
0011: 	EmailAddress =  Trim(Request.QueryString("EMail"))
0012: 	errorvalue = Request.QueryString("error")
0013: '	If Request.Cookies("user") <> "" Then
0014: '		loginName = Request.Cookies("user")
0015: '	Else
0016: 		loginName = ""
0017: '	End If
0018: 
0019: If EmailAddress = "" Then
0020: FocusOn = "EmailAddress"
0021: Else
0022: FocusOn = "Password"
0023: End If
0024: 
0025: 
0026: 
0027: %>
0028: 
0029: <html>
0030: <head>
0031: <base target="_top">
0032: <meta name="viewport" content="width=device-width">
0033: <!base target="_top">
0034: 	<title>March Madness - Login</title>
0035: 	<link href="mm.css" rel="stylesheet" type="text/css">
0036: 		<link href="https://mychinodes.org/desb.css" rel="stylesheet" type="text/css">
0037: 
0038: 	<script language="Javascript">
0039: 		function sendPwd()
0040: 		{
0041: 			form = document.login;
0042: 			if (form.EmailAddress.value == "")
0043: 			{
0044: 				alert('Please type in your Login Name before requesting your Password');
0045: 				return;
0046: 			}
0047: 			window.location = "sendPassword.asp?user="+escape(form.EmailAddress.value);
0048: 		}
0049: 		
0050: 		function focusTextBox()	{
0051: 			form = document.login;
0052: 			if (form.EmailAddress.value == "")	{
0053: 				form.EmailAddress.select();
0054: 			}
0055: 			else	{
0056: 				form.Password.focus();
0057: 			}
0058: 		}
0059: 	</script>
0060: </head>
0061: 
0062: <body bgcolor="#ffffff" onload="document.login.<%= FocusOn %>.focus()">
0063: 
0064: 
0065: <form method="post" name="login" action="signOnCheck.asp?from=<%= from %>">
0066: 	<table border="0" cellpadding="0" cellspacing="2" width="330">
0067: 		<tr>
0068: 			<td class="normbold" colspan="2">If you are already registered in the
0069:               <%= season %> March Madness Contest, please enter your password below.</td>
0070: 		</tr>
0071: 		<tr>
0072: 			<td class="normRed" colspan="2">
0073: 				&nbsp;<br>
0074: <%
0075: 	If errorvalue = "password" Then 
0076:         Response.Write(password)
0077:         Response.Write("PLEASE ENTER THE CORRECT PASSWORD<br>&nbsp;")
0078:     End If
0079: 	If errorvalue = "noentry" Then 
0080: 	   Response.Write("THIS EMAIL ADDRESS IS NOT REGISTERED<br>&nbsp;")
0081: 	End If
0082: 	If errorvalue = "" Then
0083: 	   Response.Write("&nbsp;")
0084: 	End If
0085: %>
0086: 			</td>
0087: 		</tr>
0088: 		<tr>
0089: 			<td class="normbold">Email Address:&nbsp;</td>
0090: 			<td class="norm">
0091: 				<input type="email" name="EmailAddress" size="20" value="<%= EmailAddress %>" required>
0092: 			</td>
0093: 		</tr>
0094: 		<tr>
0095: 			<td class="normbold">Password:&nbsp;</td>
0096: 			<td class="norm">
0097: 				<input type="Password" name="Password" size="15" value="" required>
0098: 			</td>
0099: 		</tr>
0100:      <tr>
0101:           <td height="21" align="right" class="normbold" ></td>
0102:           <td height="21" align="left" class="norm">&nbsp;<br>
0103: 		  <input TYPE="submit"  VALUE="Continue" class="button-40">
0104: 		  &nbsp;&nbsp;&nbsp;
0105: 				<input type="Button" value="Cancel" style="background-color:#FAD2B8;" onclick="history.back(-1)" class="button_close">
0106: 		  </td>
0107:         </tr>
0108: 	</table>
0109: 	<table border="0" cellpadding="0" cellspacing="0" width="300">
0110: 		<tr><td class="norm">&nbsp;</td></tr>
0111: 		<tr><td height="1" bgcolor="#888888"><spacer type="block"></td></tr>
0112: 		<tr>
0113: 			<td class="norm" align="center">
0114: 				&nbsp;<br>
0115: 				If you forgot&nbsp; your password, <a href="getPassword.asp" class="normUndl">click
0116:                 here</a>
0117: 			</td>
0118: 		</tr>
0119: 	</table>
0120: </form>
0121: 
0122: 
0123: </body>
0124: </html>