Count Lines in Pages

Contents of Page: GetPassword_m.asp Number of Lines: 73 Last Modified: 2/22/2026 9:07:29 AM
0001: <% @Language = "VBScript" %>
0002: 
0003: <!-- #include FILE="include/adovbs.inc" -->
0004: <!-- #include FILE="include/constants.inc" -->
0005: 
0006: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
0007: 
0008: <%
0009: 
0010: 		emailaddress = Request.Cookies("user")
0011: 
0012: %>
0013: 
0014: <html>
0015: <head>
0016: <meta name="viewport" content="width=device-width, initial-scale=2">
0017: 	<title>March Madness - Email password</title>
0018: 	<link href="mm.css" rel="stylesheet" type="text/css">
0019: 		<link href="https://mychinodes.org/desb.css" rel="stylesheet" type="text/css">
0020: 		<script language="Javascript">
0021: 			
0022: 		function focusTextBox()	{
0023: 			form = document.login;
0024: 			if (form.EmailAddress.value == "")	{
0025: 				form.EmailAddress.select();
0026: 			}
0027: 			else	{
0028: 				form.EmailAddress.focus();
0029: 			}
0030: 		}
0031: 	</script>
0032: 	
0033: </head>
0034: 
0035: <body bgcolor="#ffffff" onload="focusTextBox()">
0036: 
0037: 
0038: <form method="post" name="login" action="sendPassword2.asp">
0039:    <table cellspacing="0" border="1" cellpadding="1" width="350" bordercolor="#FED87B">
0040:   <tr><td>
0041:   <table border="0" cellpadding="1" cellspacing="1" width="345" align="left" bgcolor="#FFFAF0">
0042: 		<tr>
0043: 			<td class="bigblue" colspan="2">
0044:               Enter your email address:</p>
0045:             </td>
0046: 		</tr>
0047: 	
0048: 		<tr>
0049: 				<td class="norm">
0050: 				<input type="Email" name="EmailAddress" size="25" value="<%= emailaddress %>" required>
0051: 			</td>
0052: 		</tr>
0053: 	
0054: 		<tr>
0055: 			<td class="normbold" colspan="2">	
0056: 				&nbsp;<br><input type="Submit" value="Email me my password" class="button-40">
0057: 			</td>
0058: 		</tr>
0059: 	</table>
0060: 	<table border="0" cellpadding="0" cellspacing="0" width="300" align="center">
0061: 		<tr><td class="norm">&nbsp;</td></tr>
0062: 		<tr>
0063: 			<td class="norm" align="center">
0064: 				&nbsp;
0065: 			</td>
0066: 		</tr>
0067: 	</table>
0068: 	
0069: </form>
0070: 
0071: 
0072: </body>
0073: </html>