-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (45 loc) · 1.86 KB
/
index.html
File metadata and controls
65 lines (45 loc) · 1.86 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<title>BYOB</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--Reset CSS-->
<link rel="stylesheet" type="text/css" href="css/reset.css" />
<!--Bootstrap CSS-->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css"
integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS"
crossorigin="anonymous">
<!--Custom CSS-->
<link rel="stylesheet" href="css/styles.css" />
<!--Favicon-->
<link rel="icon"
type="image/png"
href="images/favicon.ico" />
</head>
<body>
<!--This is the container where all the html goes-->
<main></main>
<!--Javascript Links-->
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"
></script>
<script src="js/router.js"></script>
<script src="js/main.js"></script>
<!--AJAX and Age Verify-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript" id="AgeVerifyScript" data-template="bottles" data-age="21" data-method="MDY" data-cookielength=".001" data-prompttextdob="Welcome!<br /><br />Please submit your<br />date of birth to enter." data-yytext="YYYY" data-mmtext="MM" data-ddtext="DD" data-underageredirect="https://www.nick.com/" src="https://av.ageverify.co/jsv6/dob.js"></script>
<!--Firebase-->
<script src="https://www.gstatic.com/firebasejs/5.8.5/firebase.js"></script>
<!--EmailJs-->
<script type="text/javascript" src="https://cdn.emailjs.com/sdk/2.3.2/email.min.js"></script>
<script type="text/javascript">
(function(){
emailjs.init("user_StJi12J9xJ32elLuTBnGV");
})();
</script>
</body>
</html>