golf_backend/app/Views/membership.php
2023-08-03 12:51:02 +05:30

289 lines
10 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Evo Membership - Golf Evolution</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php include 'member_layout/analyticscode.php' ?>
<link rel="icon" href="<?= base_url()."/public"; ?>/assets/member_images/favicon.png" sizes="192x192" />
<link rel="apple-touch-icon" href="<?= base_url()."/public"; ?>/assets/member_images/favicon.png" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="<?= base_url()."/public"; ?>/assets/member_css/front-style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="<?= base_url()."/public"; ?>/assets/member_js/ajax.js"></script>
<input id="url" value="<?= base_url() ?>" type="hidden">
<input id="c_token" value="<?php if ($token) { echo md5($token); } ?>" type="hidden">
</head>
<body class="membership">
<?php include 'member_layout/header.php' ?>
<section class="presale-offer-section">
<div class="container">
<h3 class="mb-5 heading-font text-center heading-border">Credit Pack Pre Opening Offer</h3>
<div class="row align-items-center">
<div class="col-lg-6">
<p>Get more yards out of your dollar. Purchase any of our Evo Packs before we open and receive an additional 20% worth of credits. Your Golf Evolution Credits are our currency and you can use them for all bookings whether it is a lesson, a practice session or a game of golf with your buddies.</p>
<p class="mb-4">Each Golf Evolution Credit has a Value of $30, you can redeem it to book Golf Sim play and practice, Golf coaching and Fitting sessions as per the price list mentioned below. </p>
<figure class="credit-table"><table><thead><tr><th class="text-center">Product</th><th class="text-center">Cost</th><th class="text-center">Credits</th></tr></thead><tbody><tr>
<td>Practice / Play - 1/2 hr</td><td class="text-center">$30</td><td>1</td></tr><tr>
<td>Practice / Play - 1 hr</td><td class="text-center">$60</td><td>2</td></tr><tr>
<td>Individual Coaching - 1/2 hr</td><td class="text-center">$90</td><td>3</td></tr><tr>
<td>Individual Coaching - 1 hr</td><td class="text-center">$150</td><td>5</td></tr>
<tr class="fit-session"><td>Fitting Session</td><td></td><td></td></tr>
<td>Single fitting (driver, irons or woods) - 1 hr</td><td class="text-center">$120</td><td>4</td></tr><tr>
<td>Full bag fitting (Driver, woods, irons, wedges) - 2 hr</td><td class="text-center">$210</td><td>7</td></tr></tbody></table></figure>
</div>
<div class="col-lg-6">
<div class="row">
<div class="col-sm-6">
<div class="credit-offer-box">
<div class="offer-tag"><img src="<?= base_url()."/public"; ?>/assets/member_images/Offer.png"/ width="43" height="71"></div>
<img src="<?= base_url()."/public"; ?>/assets/member_images/cart-icon.png" alt="" width="70" height="70"/>
<h6 class="pack-title font-bold"><?= $pack_data[0]['package_name']; ?></h6>
<div class="pack-desc"><?= $pack_data[0]['discription']; ?></div>
<div class="pack-price font-bold"><span class="price-symbol">$</span><?= $pack_data[0]['cost']; ?></div>
<div class="pack-tax font-bold">+ Taxes</div>
<div class="pack-credit-number font-bold"><?= $pack_data[0]['credit']; ?> Credits</div>
<div class="pack-credit-point"><?= $pack_data[0]['offer_label']; ?></div>
<div class="pack-credit-price">1 Credit at $<?= round($pack_data[0]['cost'] / $pack_data[0]['credit'] , 2); ?></div>
<a id="<?= $pack_data[0]['id']; ?>" class="pack-submit blue">Add To Cart</a>
</div>
</div>
<div class="col-sm-6 second-pack">
<div class="credit-offer-box">
<div class="offer-tag"><img src="<?= base_url()."/public"; ?>/assets/member_images/Offer.png"/ width="43" height="71"></div>
<img src="<?= base_url()."/public"; ?>/assets/member_images/cart-icon.png" alt="" width="70" height="70"/>
<h6 class="pack-title font-bold"><?= $pack_data[1]['package_name']; ?></h6>
<div class="pack-desc"><?= $pack_data[1]['discription']; ?></div>
<div class="pack-price font-bold"><span class="price-symbol">$</span><?= $pack_data[1]['cost']; ?></div>
<div class="pack-tax font-bold">+ Taxes</div>
<div class="pack-credit-number font-bold"><?= $pack_data[1]['credit']; ?> Credits</div>
<div class="pack-credit-point"><?= $pack_data[1]['offer_label']; ?></div>
<div class="pack-credit-price">1 Credit at $<?= round($pack_data[1]['cost'] / $pack_data[1]['credit'] , 2); ?></div>
<a id="<?= $pack_data[1]['id']; ?>" class="pack-submit pink">Add To Cart</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="how-works" style="background-image:url(<?= base_url()."/public/assets/member_images/good-shot-buddy-shot-two-happy-men-playing-game-golf.png"; ?>);">
<div class="container">
<div class="row">
<div class="col-12 col-lg-6 pt-5 pb-3 pe-5 bg-white">
<h3 class="mb-3 heading-font">How it Works</h3>
<div class="row work-section">
<ul>
<li>Purchase your credits<br/>(The more you purchase the cheaper it gets)</li>
<li>Credits are added to your account<br/>
(Credits will have a validity of One Year from the date of opening )</li>
<li>After we open, you can use credits for yourself, and your friends and family to - play, practice, take a lesson or do a fitting season (each option has a credit value associated to it).</li>
<li>Find the time and the date that suits you.</li>
<li>Add it to your cart</li>
<li>Proceed to checkout and use your credits to confirm the booking.</li>
</ul>
</div>
</div>
<div class="col-12 col-lg-6">
</div>
</div>
</div>
</section>
<section class="pt-5 pb-5 evo-membership">
<div class="container">
<div class="row">
<div class="col-md-1">
</div>
<div class="col-md-10">
<h1 class="heading-border">Golf Evolution Offer!</h1>
<p class="text-justify">Elevate your golfing experience with our exclusive pre-opening offer designed for golf enthusiasts like you. With our pre-opening credit pack offer, you gain additional access to our state-of-the-art golf simulators, allowing you to practice your swing, improve your skills, and enjoy virtual rounds of golf on some of the worlds most renowned courses.</p>
<p class="text-justify">Our booking system offers flexibility and convenience, allowing you to redeem credits at your own pace and explore various simulation options. Whether you&#39;re a beginner looking to learn the game or a seasoned golfer seeking to enhance your technique, our golf simulator credit pack is your ticket to endless enjoyment on the greens and our pre-opening offer adds additional value. Come join us, on the journey to Evolve your game.</p>
</div>
<div class="col-md-1">
</div>
</div>
<div class="row membership-img">
<div class="col-md-4">
<img src="<?= base_url()."/public"; ?>/assets/member_images/Vector-3.png" width="68" height="80" alt="" class="mb-4"/>
<p class="text-justify">Book lessons or club fittings with our Internationally Certified (Canada &amp; UK) Golf Professional Jonathan Garratt. His ability to help you achieve the best you can be as a golfer sets him apart.</p>
</div>
<div class="col-md-4">
<img src="<?= base_url()."/public"; ?>/assets/member_images/Vector-4.png" width="80" height="80" alt="" class="mb-4"/>
<p class="text-justify">Utilize our investment in state-of-the-art technology to play courses in vivid detail and accurate ball tracking, all over the world.</p>
</div>
<div class="col-md-4">
<img src="<?= base_url()."/public"; ?>/assets/member_images/Vector-5.png" width="80" height="80" alt="" class="mb-4"/>
<!-- <h5 class="mem-icontitle">Lorem Ipsum Lorem</h5> -->
<p class="text-justify">Take the Golf Evolution Simulator experience to improve your overall enjoyment of the game.</p>
</div>
</div>
</div>
</section>
<section class="contact-section pt-4 pb-4 text-center">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-3">
</div>
<div class="col-lg-3 question-title">
<h6>Have a question? Reach us</h6>
</div>
<div class="col-lg-3">
<a href="https://<?php echo $_SERVER['SERVER_NAME']; ?>/contact-us/" class="contact-btn">Contact Us</a>
</div>
<div class="col-lg-3">
</div>
</div>
</div>
</section>
<?php include 'member_layout/footer.php' ?>
</body>
</html>