Hello, Below is the code for a Captive Portal Splash Page.
I have tried to research how to fix the button at the bottom of my page but I can either add a link (which does not require checking the box to agree to terms) or simply how it came to me without the ability to send customer anywhere.
[<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="../css/styles.css" rel="stylesheet" type="text/css" />
<title>Holiday Inn® eHost™ | Terms & Conditions</title>
</head>
<script language="javascript">
function showerror(){
if(document.terms.accept.checked == false){
document.getElementById("error").style.visibility = "visible";
}
}
</script>
<body id="login">
<div id="wrapper">
<div id="header"><img src="../images/logo_hiex.gif" alt="Holiday Inn Express®" border="0" width="121" height="61" />
</div>
<div id="main">
<h1 id="text_tc"><img src="../images/welcome_click_go_hiex.gif" alt="Welcome to Holiday Inn® High speed Internet access - It's free just click and go." width="359" height="84"/></h1>
<p>Please read the Terms & Conditions. If you accept the Terms, simply click below to connect.</p>
<div id="termsconds">
<h3><b>Six Continents Hotels, Inc.<br />
Terms of Use of Internet</b><br />
<br />
TERMS, CONDITIONS AND NOTICES<br />
<br />
</h3>
<h4>USE OF THE SERVICE AND ACCESS TO THE WEB SITE</h4>
<p>The Service .....</p>
<p>You agree .....</p>
</div>
<div id="access">
<p class="error" id="error">Please accept the Terms & Conditions and check the access code.</p>
<form name="terms" id="terms">
<table width="586" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="left" width="30" valign="top"><input name="accept" type="checkbox" /></td>
<td valign="middle"><p>I accept the Terms & Conditions.</p></td>
</tr>
</table>
<table width="586" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="130"><img src="../images/access_web.gif" width="112" height="24" border="0" alt="Access Code" /></td>
<td width="160"> </td>
<td><a onclick="showerror()" style="cursor:pointer;"></a></td>
</tr>
</table>
</form>
</div>
</div>
<div id="footer"><img id="stay" src="../images/stay_smart.gif" width="68" height="15" alt="Stay Smar" border="0" /></div>
</div>
</body>
</html>]