63 lines
2.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<meta name="description" content="User Profile - BNKops Map - Interactive canvassing web-app & viewer">
<title>User Profile</title>
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="shortcut icon" href="/favicon.ico">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/user.css">
</head>
<body>
<div id="app">
<!-- Header -->
<header class="header">
<h1>User Profile</h1>
<div class="header-actions">
<a href="/" class="btn btn-secondary">← Back to Map</a>
<span id="user-info" class="user-info"></span>
<button id="logout-btn" class="btn btn-secondary">Logout</button>
</div>
</header>
<!-- Main Content -->
<div class="user-container">
<div class="user-profile">
<h2>Profile Information</h2>
<div class="profile-info">
<div class="form-group">
<label>Email:</label>
<span id="profile-email"></span>
</div>
<div class="form-group">
<label>Name:</label>
<span id="profile-name"></span>
</div>
<div class="form-group">
<label>Role:</label>
<span id="profile-role"></span>
</div>
</div>
</div>
</div>
<!-- Status Messages -->
<div id="status-container" class="status-container"></div>
</div>
<!-- Cache Management -->
<script src="js/cache-manager.js"></script>
<!-- User JavaScript -->
<script src="js/user.js"></script>
</body>
</html>