whoami7 - Manager
:
/
home
/
analuakl
/
ankurmedia.com
/
GMR
/
month
/
Upload File:
files >> /home/analuakl/ankurmedia.com/GMR/month/june.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Photo Booth Dashboard</title> <link rel="stylesheet" href="../css/styles.css"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script> </head> <body> <div class="container"> <!-- Sidebar --> <div class="sidebar d-flex flex-column justify-content-between"> <div> <h2>PHOTO BOOTH</h2> <h3>DASHBOARD</h3> </div> <button id="logoutBtn" class="btn btn-logout">LOGOUT</button> </div> <!-- Main Content --> <div class="content"> <div class="header d-flex align-items-center"> <span><strong>TOTAL PHOTO CLICKED</strong> : 920</span> <img src="../image/gmr-and-igi-logo.png" alt="Logo"> </div> <div class="row mr-t-3"> <!-- Table 1 --> <div class="col-md-4"> <table class="table table-bordered text-center"> <thead class="table-primary"> <tr> <th>DATE</th> <th>PHOTO CLICK</th> </tr> </thead> <tbody> <script> let tableOne = ""; for (let i = 1; i <= 10; i++) { tableOne += `<tr> <td>${i}-Jun</td> <td><input type="number" class="form-control text-center photo-input" data-date="${i}-March"></td> </tr>`; } document.write(tableOne); </script> </tbody> </table> </div> <!-- Table 2 --> <div class="col-md-4"> <table class="table table-bordered text-center"> <thead class="table-primary"> <tr> <th>DATE</th> <th>PHOTO CLICK</th> </tr> </thead> <tbody> <script> let tableTwo = ""; for (let i = 11; i <= 20; i++) { tableTwo += `<tr> <td>${i}-Jun</td> <td><input type="number" class="form-control text-center photo-input" data-date="${i}-March"></td> </tr>`; } document.write(tableTwo); </script> </tbody> </table> </div> <!-- Table 3 --> <div class="col-md-4"> <table class="table table-bordered text-center"> <thead class="table-primary"> <tr> <th>DATE</th> <th>PHOTO CLICK</th> </tr> </thead> <tbody> <script> let tableThree = ""; for (let i = 21; i <= 30; i++) { tableThree += `<tr> <td>${i}-Jun</td> <td><input type="number" class="form-control text-center photo-input" data-date="${i}-March"></td> </tr>`; } document.write(tableThree); </script> </tbody> </table> </div> </div> <button id="backBtn" class="back-btn">BACK</button> </div> </div> <script> document.getElementById("logoutBtn").addEventListener("click", function () { // Clear session storage or local storage sessionStorage.clear(); localStorage.clear(); // Redirect to Home Page window.location.href = "../index.php"; // Change to your actual home page }); document.getElementById("backBtn").addEventListener("click", function () { window.history.back(); }); </script> </body> </html>
Copyright ©2021 || Defacer Indonesia