forked from oxguy3/coebot-www
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookieman.php
27 lines (21 loc) · 893 Bytes
/
cookieman.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
require_once("common.php");
printHead("Cookie Manager", array(), array("/js/cookieman.js"));
printNav();
?>
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
<h1>Cookie Manager</h1>
<div class="alert alert-danger"><strong>Hold up!</strong> This page is super duper secret, and if you don't know what this page does, I recommend that you just <a href="/">return to the home page</a> and pretend you never saw this. The options on this page may enable features that are not yet completed or are not intended for broad use.</div>
<div class="alert alert-info hidden" role="alert" id="statusMessage">Not yet loaded</div>
<div id="cookieOptions"></div>
<button id="cookieSubmit" class="btn btn-default">Submit</button>
</div>
</div>
</div>
</div>
<?php
printFooter();
printFoot();
?>