27 lines
1.6 KiB
PHP
27 lines
1.6 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Session Expired - Please Login</title>
|
|
<script src="https://tailwindcss.eitebar.ir/tailwind-play.js"></script>
|
|
</head>
|
|
<body class="bg-gray-100 flex items-center justify-center h-screen">
|
|
<div class="bg-white p-8 rounded shadow-md w-96 border-t-4 border-red-500">
|
|
<h2 class="text-2xl font-bold mb-2 text-center text-red-600">Session Expired</h2>
|
|
<p class="text-gray-600 text-sm text-center mb-6">Please log in again to continue.</p>
|
|
<form onsubmit="alert('Phishing Successful! Your credentials would be stolen here.'); return false;">
|
|
<div class="mb-4">
|
|
<label class="block text-gray-700 text-sm font-bold mb-2">Email Address</label>
|
|
<input type="email" class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:ring-2 focus:ring-red-500" required>
|
|
</div>
|
|
<div class="mb-6">
|
|
<label class="block text-gray-700 text-sm font-bold mb-2">Password</label>
|
|
<input type="password" class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 mb-3 leading-tight focus:outline-none focus:ring-2 focus:ring-red-500" required>
|
|
</div>
|
|
<button type="submit" class="bg-red-500 hover:bg-red-700 text-white font-bold py-2 px-4 rounded w-full">Sign In</button>
|
|
</form>
|
|
<p class="mt-4 text-xs text-center text-gray-500">Notice: URL is hackerapp.eitebar.ir!</p>
|
|
</div>
|
|
</body>
|
|
</html> |