%@ Language=JScript %>
<%
var email = "";
var username = "";
var content = "";
if (Request.QueryString("status") != "ok")
{
content += "";
content += "
Forgotten password
";
if (Request.QueryString("error") == "noemail")
{
content += "There is no user registered with the email address you specified. Perhaps you registered with another address, please try again...";
email = Request.querystring("email");
username = Request.querystring("username");
}
else
{
content += "Type your email address below and your username and password will be sent to your address.";
}
content += "";
content += " ";
content += "
";
}
else
{
content += "
You will receive your password and username at your email address in a couple of minutes."
}
var title = "The Empire Deluxe Ladder - forgotten password";
pageTemplate(content, title);
%>