70 lines
2.3 KiB
HTML
70 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>User Panel - monotreme.org</title>
|
|
<link rel="stylesheet" href="../styles.css">
|
|
</head>
|
|
<body>
|
|
<table>
|
|
<!-- Header -->
|
|
<tr>
|
|
<td colspan="2" class="header">
|
|
<h1>Welcome to monotreme.org's User Panel</h1>
|
|
</td>
|
|
</tr>
|
|
|
|
<!-- Navigation -->
|
|
<tr>
|
|
<td colspan="2" class="nav">
|
|
<a href="/">Home</a>
|
|
<a href="/about/">About</a>
|
|
<a href="/blog/">Blog</a>
|
|
<a href="/contact/">Contact</a>
|
|
<a href="/logout/">Logout</a>
|
|
</td>
|
|
</tr>
|
|
|
|
<!-- Main Content and Sidebar -->
|
|
<tr>
|
|
<!-- Sidebar -->
|
|
<td class="sidebar">
|
|
<p><strong>User Options</strong></p>
|
|
<ul>
|
|
<li><a href="/user/profile">View Profile</a></li>
|
|
<li><a href="/user/settings">Account Settings</a></li>
|
|
<li><a href="/user/activity">Activity Log</a></li>
|
|
</ul>
|
|
</td>
|
|
|
|
<!-- Main Content Area -->
|
|
<td class="content">
|
|
<h2>Hello, [USERNAME]!</h2>
|
|
<p>Welcome to your personal dashboard. Here, you can manage your account, view recent activity, and update your profile information.</p>
|
|
|
|
<div class="dashboard">
|
|
<h3>Your Recent Activity</h3>
|
|
<p>No recent activity available.</p>
|
|
</div>
|
|
|
|
<div class="settings">
|
|
<h3>Quick Settings</h3>
|
|
<ul>
|
|
<li><a href="/user/profile">Update Profile Information</a></li>
|
|
<li><a href="/user/change_password">Change Password</a></li>
|
|
<li><a href="/user/notifications">Manage Notifications</a></li>
|
|
</ul>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<!-- Footer -->
|
|
<tr>
|
|
<td colspan="2" class="footer">
|
|
<p>© 2024 monotreme.org</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|