Count Lines in Pages

Contents of Page: login_m.asp Number of Lines: 133 Last Modified: 2/22/2026 9:05:24 AM
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: <html>
0028: <head>
0029: <meta name="viewport" content="width=device-width">
0030: <base target="_top">
0031: 	<title>March Madness - Login</title>
0032: 	<link href="mm.css" rel="stylesheet" type="text/css">
0033: 		<link href="https://mychinodes.org/desb.css" rel="stylesheet" type="text/css">
0034: 	<script language="Javascript">
0035: 		function sendPwd()
0036: 		{
0037: 			form = document.login;
0038: 			if (form.EmailAddress.value == "")
0039: 			{
0040: 				alert('Please type in your Login Name before requesting your Password');
0041: 				return;
0042: 			}
0043: 			window.location = "sendPassword.asp?user="+escape(form.EmailAddress.value);
0044: 		}
0045: 		
0046: 		function focusTextBox()	{
0047: 			form = document.login;
0048: 			if (form.EmailAddress.value == "")	{
0049: 				form.EmailAddress.select();
0050: 			}
0051: 			else	{
0052: 				form.Password.focus();
0053: 			}
0054: 		}
0055: 	</script>
0056: </head>
0057: 
0058: <body bgcolor="#ffffff" onload="document.login.<%= FocusOn %>.focus()">
0059: 
0060: 
0061: <form method="post" name="login" action="signOnCheck_m.asp">
0062:    <table cellspacing="0" border="1" cellpadding="1" width="350" bordercolor="#FED87B">
0063:   <tr><td>
0064:   <table border="0" cellpadding="1" cellspacing="1" width="345" align="left" bgcolor="#FFFAF0">
0065: 		<tr>
0066: 			<td class="bigblue" colspan="2" align="center">
0067:               <%= season %> March Madness Contest Sign In</td>
0068: 		</tr>
0069: 		<tr>
0070: 			<td class="normRed" colspan="2">
0071: 				&nbsp;<br>
0072: <%
0073: 	If errorvalue = "password" Then 
0074:         Response.Write(password)
0075:         Response.Write("PLEASE ENTER THE CORRECT PASSWORD<br>&nbsp;")
0076:     End If
0077: 	If errorvalue = "noentry" Then 
0078: 	   Response.Write(EmailAddress & " IS NOT REGISTERED<br>&nbsp;")
0079: 	End If
0080: 	If errorvalue = "" Then
0081: 	   Response.Write("&nbsp;")
0082: 	End If
0083: %>
0084: 			</td>
0085: 		</tr>
0086: 		<tr>
0087: 			<td class="normbold" align="right">Email Address:&nbsp;</td>
0088: 			<td class="norm">
0089: 				<input type="Text" name="EmailAddress" size="25" value="<%= EmailAddress %>" class="bigblue" style="height: 25; width: 210" required>
0090: 			</td>
0091: 		</tr>
0092: 		<tr>
0093: 			<td class="normbold" align="right">Password:&nbsp;</td>
0094: 			<td class="norm">
0095: 				<input type="Password" name="Password" size="15" value="" required>
0096: 			</td>
0097: 		</tr>
0098: 		<tr>
0099: 			<td class="normbold" colspan="2" align="center">	
0100: 				&nbsp;<br><input type="Submit" value="Sign In" style="background-color:#FAD2B8;" class="button-40">
0101: 			</td>
0102: 		</tr>
0103: 	</table>
0104: 	<table border="0" cellpadding="0" cellspacing="0" width="330">
0105: 		<tr><td class="norm">&nbsp;</td></tr>
0106: 		<tr><td height="1" bgcolor="#888888"><spacer type="block"></td></tr>
0107: 		
0108: <% If ErrorValue <> "noentry" Then %>
0109: 		<tr>
0110: 			<td class="norm" align="center">
0111: 				&nbsp;<br>
0112: 				<big>If you forgot&nbsp; your password, <a href="getpassword_m.asp?email=<%= EmailAddress %>" target="main">click
0113:                 here</a>
0114: 			</td>
0115: 		</tr>
0116: <% Else %>
0117: 
0118: 	<tr>
0119: 			<td class="norm" align="center">
0120: 				&nbsp;<br>
0121: 				The Register for the Contest, <a href="my4registerinfo1_m.asp" class="normUndl">click
0122:                 here</a>
0123: 			</td>
0124: 		</tr>
0125: 
0126: 
0127: <% End If %>		
0128: 	</table>
0129: </form>
0130: 
0131: 
0132: </body>
0133: </html>