25 lines
675 B
HTML
25 lines
675 B
HTML
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>Email Validated</title>
|
||
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||
|
|
|
||
|
|
<script language="javascript" type="text/javascript">
|
||
|
|
function completeRedirect() {
|
||
|
|
location.href = "http://domain1.com";
|
||
|
|
}
|
||
|
|
function beginRedirect() {
|
||
|
|
//Wait 15 seconds.//
|
||
|
|
setTimeout("completeRedirect()", 15000);
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
<body onload="beginRedirect()">
|
||
|
|
You have successfully validated your email.
|
||
|
|
<br>
|
||
|
|
You will be redirected to the website momentarily, or you may click the link below.
|
||
|
|
<br>
|
||
|
|
<br>
|
||
|
|
<a href="http://domain1.com">Website</a>
|
||
|
|
</body>
|
||
|
|
</html>
|