-
Notifications
You must be signed in to change notification settings - Fork 0
/
vip.html
91 lines (79 loc) · 4.04 KB
/
vip.html
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>
VIP
</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="Downtown VIP" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="css/styles.css" rel="stylesheet" />
<link rel="apple-touch-icon" sizes="57x57" href="img/phoneicon/apple-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="img/phoneicon/apple-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="114x114" href="img/phoneicon/apple-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="144x144" href="img/phoneicon/apple-icon-144x144.png" />
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="js/script.js"></script>
<style>
a {
color: #000000;
}
.phonecolor {
color: #000000 !important;
}
</style>
</head>
<body>
<div class="aspNetHidden">
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE"
value="/wEPDwUINDYyMzU2NzYPZBYCAgMPZBYKAgEPDxYGHgRUZXh0BQ9FZHdhcmQgU3RvcmxpZW4eCUZvcmVDb2xvcgojHgRfIVNCAgRkZAIDDw8WAh8ABQEyZGQCBw8PFgIfAGVkZAIJDw8WAh8ABRFNb2JpbDogOTA4IDkzIDE4OGRkAg0PDxYCHgdWaXNpYmxlaGQWAgIHDxAPFgIeB0NoZWNrZWRnZGRkZBgBBR5fX0NvbnRyb2xzUmVxdWlyZVBvc3RCYWNrS2V5X18WAQUJaWJDaGVja0lu5bTEOfgMkcnuvN+psbd8bdpdoMOJfHaf/k3JeCYhsrw=" />
</div>
<div class="aspNetHidden">
<input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="CA0B0334" />
<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION"
value="/wEdAAL2l3OmisTzu9T+RuShg2D5WFMl/whiepMo12qg//NAVwSGlYya6XleWTtHdGLQdGgCbgrLEvxPeGcyRT6QBTCO" />
</div>
<div class="main-wrapper">
<div style="width: 100%">
<img src="img/v2/topp.png" style="width: 100%" />
</div>
<div
style="width: 100%; height: 37px; padding-top:18px; background-image: url('img/v2/goldplatter.png'); background-repeat:no-repeat; background-position: top center; background-size: contain; text-align:center;">
<span id="lblGuestName" style="color:rgb(0, 0, 0);font-size:16px;font-weight:bold;"></span>
</div>
<div
style="width:100%; height: 60px; margin-top: 5px; vertical-align: middle; color: #fff; font-size: 13px; text-align:center">
<span id="lblGuestCount" style="font-size:22px;font-weight:bold;">2</span> stk, gratis inngang
</div>
<div style="width: 100%; text-align: center; height: 41px">
<a href="#">
<img id="ibCheckIn" src="img/v2/checkinbt.png" style="height:41px;width:150px;cursor:pointer;" />
</a>
<span id="lblCheckInDate" style="color:#FFA8A8;font-weight:bold;"></span>
</div>
<div>
<span id="lblCellPhone" class="phonecolor"></span>
</div>
<div style="width: 100%; color:#fff; text-align:center; padding-top:30px; font-style:italic; font-size: 14px">
Innsjekk gjøres av dørvakt<br />
og dere må komme samlet.<br />
* Du MÅ vise legitimasjon
</div>
<div style="width: 100%; color:red; text-align:center; padding-top:30px; font-style:italic; font-size: 26px">
</div>
</div>
<script>
var name = getName();
document.getElementById("lblGuestName").textContent = name;
var checkInBtn = document.getElementById("ibCheckIn");
checkInBtn.addEventListener('click', function () {
redirectToCheckedin(name);
});
var guestCount = getGuestCount();
</script>
</body>
</html>