Skip to content

Instantly share code, notes, and snippets.

@d0n601
Last active April 21, 2016 18:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save d0n601/931850430b248001e104 to your computer and use it in GitHub Desktop.
Save d0n601/931850430b248001e104 to your computer and use it in GitHub Desktop.
JavaScript Alcohol Age Gateway Example
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" context="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Drinks N' Alcohol</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<link href="..//bouncer.css" rel="stylesheet">
<style>
body {
text-align:center;
color:#FFF;
background-image: url('img/drankin.jpg');
background-size: cover;
}
</style>
</head>
<body>
<h1>Alcoholic Material</h1>
<p>Restricted stuff involving drinking within...</p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="../bouncer.js"></script>
<script>
$(function() {
//Settings for Bounder.js Plugin
var settings = {
"image" : 'http://placehold.it/350x150',
"message" : "As part of our commitment to responsible drinking, we just need to check that you're of legal drinking age.",
"redirect" : 'http://responsibility.org',
"deny_message" : "Sorry, but you are not of legal drinking age.<br>You'll be redirected soon...",
"deny_timeout": 5000,
"link_terms" : '/terms',
"link_privacy" : '/privacy'
};
//Initiate Bouncer.js
drinkingAge(settings);
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment