<!DOCTYPE html>
<html>
<head>
<title>Admin Dashboard</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Users</a></li>
<li><a href="#">Reports</a></li>
<li><a href="#">Settings</a></li>
<li><a href="#">Logout</a></li>
</ul>
</nav>
</header>
<main>
<h1>Welcome to the Admin Dashboard</h1>
<p>Here you can manage users, view reports, and update settings.</p>
<section>
<h2>Recent Users</h2>
<table>
<tr>
<th>Name</th>
<th>Email</th>
<th>Actions</th>
</tr>
<tr>
<td>John Doe</td>
<td>johndoe@example.com</td>
<td>
<a href="#">Edit</a>
<a href="#">Delete</a>
</td>
</tr>
<tr>
<td>Jane Smith</td>
<td>janesmith@example.com</td>
<td>
<a href="#">Edit</a>
<a href="#">Delete</a>
</td>
</tr>
</table>
</section>
</main>
</body>
</html>
Comments
Post a Comment