2016-04-05 14:40:37 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>Captive Portal demo</title>
|
|
|
|
<meta name="description" content="Captive Portal demo">
|
|
|
|
<meta name="author" content="Stefan Midjich">
|
|
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="/static/css/normalize.css">
|
|
|
|
<link rel="stylesheet" href="/static/css/skeleton.css">
|
2016-04-15 17:22:16 +00:00
|
|
|
<link rel="stylesheet" href="/static/css/captiveportal.css">
|
2016-04-05 14:40:37 +00:00
|
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div class="container">
|
2016-04-18 19:34:16 +00:00
|
|
|
<noscript>
|
|
|
|
<div class="row">
|
|
|
|
<div class="six columns msgbox msgbox-error" style="margin-top: 2%;">
|
|
|
|
<p>Denna sidan kräver Javascript, du måste aktivera Javascript i din webbläsare för att fortsätta.</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</noscript>
|
|
|
|
|
2016-04-05 14:40:37 +00:00
|
|
|
<div class="row">
|
2016-04-15 17:22:16 +00:00
|
|
|
<div class="six columns" style="margin-top: 10%">
|
2016-04-05 14:40:37 +00:00
|
|
|
<h4>End User Agreement</h4>
|
|
|
|
|
2016-09-16 09:04:57 +00:00
|
|
|
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.
|
|
|
|
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
|
|
|
|
when an unknown printer took a galley of type and scrambled it to make a type
|
|
|
|
specimen book. It has survived not only five centuries, but also the leap into
|
|
|
|
electronic typesetting, remaining essentially unchanged. It was popularised
|
|
|
|
in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages,
|
|
|
|
and more recently with desktop publishing software like Aldus PageMaker
|
|
|
|
including versions of Lorem Ipsum.</p>
|
2016-04-05 14:40:37 +00:00
|
|
|
|
2016-09-16 09:04:57 +00:00
|
|
|
<p>It is a long established fact that a reader will be distracted by the
|
|
|
|
readable content of a page when looking at its layout. The point of using
|
|
|
|
Lorem Ipsum is that it has a more-or-less normal distribution of letters,
|
|
|
|
as opposed to using 'Content here, content here', making it look like
|
|
|
|
readable English. Many desktop publishing packages and web page editors
|
|
|
|
now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum'
|
|
|
|
will uncover many web sites still in their infancy. Various versions have
|
|
|
|
evolved over the years, sometimes by accident, sometimes on purpose
|
|
|
|
(injected humour and the like).</p>
|
2016-04-05 14:40:37 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-04-15 17:22:16 +00:00
|
|
|
|
|
|
|
<form id="approveForm" method="post">
|
2016-04-22 14:18:33 +00:00
|
|
|
<div class="row">
|
|
|
|
<div id="error-box" class="five columns msgbox msgbox-error">
|
2016-04-18 19:34:16 +00:00
|
|
|
</div>
|
2016-12-14 15:37:32 +00:00
|
|
|
<div id="statusDiv">
|
|
|
|
</div>
|
2016-04-18 19:34:16 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="form-row" class="row">
|
2016-04-15 17:22:16 +00:00
|
|
|
<div class="four columns">
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" id="approveCheckbox" required> I approve this user agreement
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<div id="approveButtonDiv" class="one column u-pull-left">
|
|
|
|
<label>
|
2016-12-14 15:37:32 +00:00
|
|
|
<button class="button-primary" id="approveButton" type="submit">Approve</button>
|
|
|
|
<!--<input id="approveButton" class="button-primary" value="Approve" type="submit">-->
|
2016-04-15 17:22:16 +00:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
2016-04-05 14:40:37 +00:00
|
|
|
</div>
|
|
|
|
|
2016-04-18 16:14:05 +00:00
|
|
|
<script>
|
2016-12-14 15:37:32 +00:00
|
|
|
var plugin_timeout = {{plugin_timeout}};
|
2016-04-18 16:14:05 +00:00
|
|
|
</script>
|
2016-12-07 13:08:43 +00:00
|
|
|
<script src="/static/js/jquery-1.12.2.min.js"></script>
|
2016-04-15 17:22:16 +00:00
|
|
|
<script src="/static/js/captiveportal.js"></script>
|
2016-04-05 14:40:37 +00:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|