Count Lines in Pages

Contents of Page: loginregistercopy.asp Number of Lines: 119 Last Modified: 8/22/2018 1:32:48 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 = "copylastyears.asp"
0011: '	from = Request.QueryString("from")
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: %>
0020: 
0021: <html>
0022: <head>
0023: 	<title>March Madness - Copy information from last year</title>
0024: 	<link href="mm.css" rel="stylesheet" type="text/css">
0025: 
0026: 	<script language="Javascript">
0027: 		function sendPwd()
0028: 		{
0029: 			form = document.login;
0030: 			if (form.EmailAddress.value == "")
0031: 			{
0032: 				alert('Please type in your Email Address requesting your Password');
0033: 				return;
0034: 			}
0035: 			window.location = "sendPassword.asp?user="+escape(form.EmailAddress.value);
0036: 		}
0037: 		
0038: 		function focusTextBox()	{
0039: 			form = document.login;
0040: 			if (form.EmailAddress.value == "")	{
0041: 				form.EmailAddress.select();
0042: 			}
0043: 			else	{
0044: 				form.Password.focus();
0045: 			}
0046: 		}
0047: 	</script>
0048: </head>
0049: 
0050: <body bgcolor="#ffffff" onload="focusTextBox()">
0051: 
0052: 
0053: <form method="post" name="login" action="signup.asp?CopyEmail=CopyEmail">
0054: 	<table border="0" cellpadding="0" cellspacing="0" width="400" align="center" height="198">
0055: 		<tr>
0056: 			<td class="bigblue" colspan="2" height="21">
0057:               <p align="center">Welcome!</p>
0058:             </td>
0059: 		</tr>
0060: 		<tr>
0061: 			<td class="normRed" height="17">
0062: 			</td>
0063: 			<td class="normRed" height="17">
0064: 			</td>
0065: 		</tr>
0066: 		<tr>
0067: 			<td class="normRed" align="left" height="29">
0068:                 <img border="0" src="images/login.gif"><b><font color="#000000">&nbsp;</font></b>
0069: 			</td>
0070: 			<td class="normRed" height="29">
0071:                 <b><font color="#000000">If you are already registered</font></b>
0072: 			</td>
0073: 		</tr>
0074: 		<tr>
0075: 			<td class="normRed" align="right" height="33">
0076:                 <img border="0" src="images/register.gif" align="left"><b><font color="#000000">
0077: 				&nbsp;<br>
0078:                 </font></b>
0079: 			</td>
0080: 			<td class="normRed" height="33">
0081:                 <b><font color="#000000">To register for this year's contest</font></b>
0082: 			</td>
0083: 		</tr>
0084: 		<tr>
0085: 			<td class="normbold" height="41">
0086:               <p align="right">&nbsp;<input type="Submit" value="Copy" style="background-color:#FAD2B8;">
0087:               </p>
0088:               <p align="right">&nbsp;</p>
0089:             </td>
0090: 			<td class="norm" height="41">
0091:                 If you participated last year, just enter you email address
0092:                 below to copy last year's info
0093: 			</td>
0094: 		</tr>
0095: 		<tr>
0096: 			<td class="normbold" height="25"></td>
0097: 			<td class="norm" height="25">
0098:             <input type="Text" name="EmailAddress1" size="35" value="<%= loginName %>">
0099: 			</td>
0100: 		</tr>
0101: 		<tr>
0102: 			<td class="normbold" colspan="2" align="center" height="32">	
0103: 				&nbsp;<br>
0104: 			</td>
0105: 		</tr>
0106: 	</table>
0107: 	<table border="0" cellpadding="0" cellspacing="0" width="300" align="center">
0108: 		<tr><td class="norm">&nbsp;</td></tr>
0109: 		<tr>
0110: 			<td class="norm" align="center">
0111: 				&nbsp;
0112: 			</td>
0113: 		</tr>
0114: 	</table>
0115: </form>
0116: 
0117: 
0118: </body>
0119: </html>