BLACKSITE
:
216.73.216.62
:
147.93.18.13 / vinyasaweddings.com
:
Linux srv667811 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64
:
/
var
/
www
/
insonohearing
/
admin
/
Upload File:
files >> /var/www/insonohearing/admin/login.php
<?php // Check if the form is submitted if ($_SERVER['REQUEST_METHOD'] === 'POST') { $email = $_POST['email']; $password = $_POST['password']; // Validate the credentials if ($email === 'admin@insonohearing.com' && $password === 'admin@123') { // Redirect to the dashboard page header('Location: index.php?page=dashboard'); exit(); // Make sure to stop further script execution } else { // If credentials are incorrect, show an error message $error_message = "Invalid email or password. Please try again."; } } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Admin Login</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> <link rel="icon" href="https://insonohearing.com/assets_b/img/favicon-32x32.png" type="image/png" sizes="32x32"> <link rel="icon" href="https://insonohearing.com/assets_b/img/favicon-32x32.png" type="image/png" sizes="16x16"> </head> <body class="bg-light"> <div class="container d-flex justify-content-center align-items-center" style="height: 100vh;"> <form class="bg-white p-4 rounded shadow" method="POST" action="" style="min-width: 300px;"> <h4 class="mb-4 text-center">Admin Login</h4> <?php if (isset($error_message)) { ?> <div class="alert alert-danger text-center mb-4"> <?php echo $error_message; ?> </div> <?php } ?> <div class="mb-3"> <label>Email</label> <input type="email" class="form-control" name="email" required> </div> <div class="mb-3"> <label>Password</label> <input type="password" class="form-control" name="password" required> </div> <button class="btn btn-primary w-100">Login</button> </form> </div> </body> </html>