45 lines
1.3 KiB
PHP
45 lines
1.3 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Dashboard</title>
|
|
<link href="/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<header class="bg-primary text-white text-center py-3">
|
|
<h1>Dashboard</h1>
|
|
</header>
|
|
<main class="container my-5">
|
|
<h2>Welcome, hello@fake.thm! - Flag: THM{CryptographyPwn007}</h2>
|
|
<a href="?action=logout" class="btn btn-danger">Logout</a>
|
|
<table class="table mt-4">
|
|
<thead>
|
|
<tr>
|
|
<th>Username</th>
|
|
<th>Role</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>hello@fake.thm</td>
|
|
<td>user</td>
|
|
</tr>
|
|
<tr>
|
|
<td>admin@fake.thm</td>
|
|
<td>admin</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</main>
|
|
<footer class="bg-light text-center py-3">
|
|
<p>© <strong>2025
|
|
</strong> Decryptify</p>
|
|
<form method="get">
|
|
<input type="hidden" name="date" value="+KLFnGqUbCmwFdWQnLAIzk9GCqfIegXfKnhRWNiXPE4=">
|
|
</form>
|
|
</footer>
|
|
</body>
|
|
</html>
|
|
|