2025-06-06 17:14:52 +08:00

16 lines
584 B
PHP

<html>
<head>
<title>Admin</title>
<link rel="stylesheet" href="./profile.css" type="text/css" />
</head>
<body>
<div id="area">
<img src="../../icon/admin.svg">
<h2 style="margin: none;"><?php session_start(); echo $_SESSION['username']; ?></h2>
<p>User Type: Administrator</p>
<a href="../logout.php" style="text-decoration: none; color: white; background-color: rgba(69, 67, 67, 0.6);
border-radius: 5px; align-items: center; left: 50%;">Log out</a>
</div>
</body>
</html>