| Server IP : 72.60.21.38 / Your IP : 216.73.216.25 Web Server : LiteSpeed System : Linux uk-fast-web1372.main-hosting.eu 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64 User : u390967363 ( 390967363) PHP Version : 8.2.30 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/u390967363/public_html/crm/ |
Upload File : |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Aiben CRM Admin Login</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="max-h-screen flex items-center justify-center bg-gradient-to-br from-blue-100 to-blue-300 px-4 py-10 sm:px-6 lg:px-8">
<div class="bg-white shadow-lg rounded-2xl w-full max-w-md p-6 sm:p-8">
<!-- Logo and Heading -->
<div class="text-center mb-6">
<img src="https://aibenproperties.com/wp-content/uploads/2024/09/Aiben-Group-Logo.png" alt="Aiben Logo" class="h-10 mx-auto">
<h2 class="text-2xl sm:text-3xl font-bold mt-3 text-blue-800">Admin Login</h2>
</div>
<!-- Login Form -->
<form action="auth.php" method="POST" class="space-y-5">
<!-- Email or Username -->
<div>
<label class="block text-gray-700 font-medium text-sm sm:text-base mb-1">Email</label>
<input type="email" name="login" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" required>
</div>
<!-- Password -->
<div>
<label class="block text-gray-700 font-medium text-sm sm:text-base mb-1">Password</label>
<input type="password" name="password" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" required>
</div>
<!-- Remember Me & Forgot Password -->
<div class="flex items-center justify-between text-sm">
<label class="flex items-center">
<input type="checkbox" class="form-checkbox text-blue-600" />
<span class="ml-2 text-gray-600">Remember me</span>
</label>
<a href="#" class="text-blue-700 hover:underline">Forgot password?</a>
</div>
<!-- Submit Button -->
<button type="submit" class="w-full bg-blue-700 hover:bg-blue-800 text-white font-semibold py-3 rounded-md transition duration-300 ease-in-out">
Login
</button>
</form>
</div>
</body>
</html>