added in the user managment section. Need to also do some updates to the admin menue and whatnot however itll get figured.
This commit is contained in:
59
map/app/public/user.html
Normal file
59
map/app/public/user.html
Normal file
@@ -0,0 +1,59 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<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>
|
||||
|
||||
<!-- User JavaScript -->
|
||||
<script src="js/user.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user