Count Lines in Pages

Contents of Page: GetPassword.asp Number of Lines: 84 Last Modified: 8/22/2018 1:32:44 PM
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:    from = "copylastyears.asp"
0010: '	from = Request.QueryString("from")
0011: '	errorvalue = Request.QueryString("error")
0012: '	If Request.Cookies("user") <> "" Then
0013: '		loginName = Request.Cookies("user")
0014: '	Else
0015: '		loginName = ""
0016: '	End If
0017: 
0018: %>
0019: 
0020: <html>
0021: <head>
0022: 	<title>March Madness - Email password</title>
0023: 	<link href="mm.css" rel="stylesheet" type="text/css">
0024: 
0025: 		<script language="Javascript">
0026: 			
0027: 		function focusTextBox()	{
0028: 			form = document.login;
0029: 			if (form.EmailAddress.value == "")	{
0030: 				form.EmailAddress.select();
0031: 			}
0032: 			else	{
0033: 				form.EmailAddress.focus();
0034: 			}
0035: 		}
0036: 	</script>
0037: 	
0038: </head>
0039: 
0040: <body bgcolor="#ffffff" onload="focusTextBox()">
0041: 
0042: 
0043: <form method="post" name="login" action="sendPassword2.asp">
0044: 	<table border="0" cellpadding="0" cellspacing="0" width="400">
0045: 		<tr>
0046: 			<td class="bigblue" colspan="2">
0047:               <p align="center">Enter your email address below and your password will be emailed to you.</p>
0048:             </td>
0049: 		</tr>
0050: 		<tr>
0051: 			<td class="normRed" colspan="2">
0052: 				&nbsp;<br>
0053: 			</td>
0054: 		</tr>
0055: 		<tr>
0056: 			<td class="normbold">Email Address:&nbsp;</td>
0057: 			<td class="norm">
0058: 				<input type="Text" name="EmailAddress" size="35" value="<%= loginName %>">
0059: 			</td>
0060: 		</tr>
0061: 		<tr>
0062: 			<td class="normbold"></td>
0063: 			<td class="norm">
0064: 			</td>
0065: 		</tr>
0066: 		<tr>
0067: 			<td class="normbold" colspan="2" align="center">	
0068: 				&nbsp;<br><input type="Submit" value="Email me my password" style="background-color:#FAD2B8;">
0069: 			</td>
0070: 		</tr>
0071: 	</table>
0072: 	<table border="0" cellpadding="0" cellspacing="0" width="300" align="center">
0073: 		<tr><td class="norm">&nbsp;</td></tr>
0074: 		<tr>
0075: 			<td class="norm" align="center">
0076: 				&nbsp;
0077: 			</td>
0078: 		</tr>
0079: 	</table>
0080: </form>
0081: 
0082: 
0083: </body>
0084: </html>