-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhighstakes.php
165 lines (142 loc) · 4.88 KB
/
highstakes.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<?php require_once('./App.php'); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="forntEnd-Developer" content="Mamunur Rashid">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?= (Type::info(2, ['name'])->name) ?> - MTL Wheels</title>
<!-- favicon -->
<link rel="shortcut icon" href="assets/images/favicon.html" type="image/x-icon">
<!-- bootstrap -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!-- Plugin css -->
<link rel="stylesheet" href="assets/css/plugin.css">
<!-- stylesheet -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- responsive -->
<link rel="stylesheet" href="assets/css/responsive.css">
<link rel="stylesheet" href="assets/css/wheels.css">
</head>
<body class="index2">
<!-- preloader area start -->
<div class="preloader" id="preloader">
<div class="loader loader-1">
<div class="loader-outter"></div>
<div class="loader-inner"></div>
</div>
</div>
<!-- preloader area end -->
<!-- Header Area Start -->
<?php include 'includes/header.php'; ?>
<!-- Header Area End -->
<!-- Breadcrumb Area Start -->
<section class="breadcrumb-area bc-contact">
<img class="bc-img" src="assets/images/breadcrumb/bonus.png" alt="">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h4 class="title">
<?= (Type::info(2, ['name'])->name) ?>
</h4>
<ul class="breadcrumb-list">
<li>
<a href="/">
<i class="fas fa-home"></i>
<i class="fas fa-chevron-right"></i>
Back to home
</a>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Breadcrumb Area End -->
<!-- Contact Area End -->
<section class="contact">
<div class="containers">
<div class="row justify-content-center">
<div class="col-lg-8 col-md-10">
<div class="section-heading">
<h5 class="subtitle">
Choose a wheel
</h5>
<h2 class="title">
and try your luck
</h2>
<h5 class="subtitle">
Prize<span style="-webkit-text-fill-color: #fff;">
<?php echo (Type::info(2)->prize) ?>
</span> each wheel
</h5>
<h5 class="subtitle">
Cost<span style="-webkit-text-fill-color: #fff;">
<?php echo (Type::info(2)->amount) ?>
</span> each number
</h5>
<h5 class="subtitle">
Odds<span style="-webkit-text-fill-color: #fff;"> 8:1 </span>
</h5>
</div>
</div>
</div>
<?php include("includes/wheels.php"); ?>
</div>
</section>
<!-- Contact Area End -->
<!-- Footer Area Start -->
<?php include 'includes/footer.php'; ?>
<!-- Footer Area End -->
<!-- Back to Top Start -->
<div class="bottomtotop">
<i class="fas fa-chevron-right"></i>
</div>
<!-- Back to Top End -->
<!-- Modal -->
<div id="myModal" class="modal fade" aria-modal="true" tabindex="-1" role="dialog">
<div class="modal-dialog modal-confirm">
<div class="modal-content">
<div class="modal-header justify-content-center">
<div class="icon-box">
<i class="fas fa-check"></i>
</div>
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body text-center">
<h4>Are you sure ?</h4>
<p>Please confirm that you choose spot <span id="spot"></span></p>
<button id="autofill" class="btn btn-primary" data-dismiss="modal"><span>Autofill</span><i class="fas fa-exchange-alt"></i></button>
<button id="refund" class="btn btn-success" data-dismiss="modal"><span>Refund</span> <i class="fas fa-undo"></i></button>
<button id="cancel" class="btn btn-danger" data-dismiss="modal"><span>Cancel</span> <i class="fas fa-check"></i></button>
<p class="nb">NB : refund and autofilled will be given of wheel is not filled</p>
<p class="nb">- if you select autofill you will randomly be placed on another wheel of wheel does not fill up</p>
</div>
</div>
</div>
</div>
<script>
localStorage.setItem("type", 2);
</script>
<!-- jquery -->
<script src="assets/js/jquery.js"></script>
<!-- popper -->
<script src="assets/js/popper.min.js"></script>
<!-- bootstrap -->
<script src="assets/js/bootstrap.min.js"></script>
<!-- plugin js-->
<script src="assets/js/plugin.js"></script>
<!-- MpusemoverParallax JS-->
<script src="assets/js/TweenMax.js"></script>
<script src="assets/js/mousemoveparallax.js"></script>
<!-- main -->
<script src="assets/js/main.js"></script>
<script src="assets/js/wheelnav.min.js"></script>
<script src="assets/js/raphael.min.js"></script>
<script src="assets/js/script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@9.17.1/dist/sweetalert2.all.min.js"></script>
<script src="assets/js/highstakes.js"></script>
</body>
</html>