
This commit introduces several improvements to the UI and functionality of various addons, including: - **Admin Panel:** Updated header statistics layout and added payday functionality with rank-based amounts. Enhanced styling for better user experience. - **Bank Addon:** Improved balance display with updated styling and structure for better readability. - **Garage Addon:** Refined vehicle and maintenance statistics display with enhanced UI elements. - **Locker Addon:** Updated storage and item statistics layout for improved clarity and usability. - **Organization Addon:** Enhanced organization statistics display and improved transaction handling with better sorting and formatting. - **Store Addon:** Updated payment method selection and improved overall styling for a more cohesive look. These changes aim to provide a more intuitive and visually appealing user experience across the platform.
97 lines
3.6 KiB
HTML
97 lines
3.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>FORGE - ORG</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="styles.css">
|
|
<script src="script.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="header-content">
|
|
<h1 id="orgName">Organization Name</h1>
|
|
<div class="org-stats">
|
|
<div class="stat-item">
|
|
<div class="stat-icon">⭐</div>
|
|
<div class="stat-info">
|
|
<span class="stat-label">Reputation</span>
|
|
<span class="stat-value" id="orgReputation">0</span>
|
|
</div>
|
|
</div>
|
|
<div class="stat-divider"></div>
|
|
<div class="stat-item">
|
|
<div class="stat-icon">💰</div>
|
|
<div class="stat-info">
|
|
<span class="stat-label">Funds</span>
|
|
<span class="stat-value" id="orgFunds">$0</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="container">
|
|
<div class="sections-grid">
|
|
<!-- Members Section -->
|
|
<div class="section-tile">
|
|
<h2>Members</h2>
|
|
<ul class="member-list" id="membersList">
|
|
<!-- Members will be populated dynamically -->
|
|
</ul>
|
|
</div>
|
|
|
|
<!-- Vehicles Section -->
|
|
<div class="section-tile">
|
|
<h2>Vehicles</h2>
|
|
<ul class="asset-list" id="vehiclesList">
|
|
<!-- Vehicles will be populated dynamically -->
|
|
</ul>
|
|
</div>
|
|
|
|
<!-- Equipment Section -->
|
|
<div class="section-tile">
|
|
<h2>Equipment</h2>
|
|
<ul class="asset-list" id="equipmentList">
|
|
<!-- Equipment will be populated dynamically -->
|
|
</ul>
|
|
</div>
|
|
<!-- Properties Section -->
|
|
<div class="section-tile">
|
|
<h2>Properties</h2>
|
|
<ul class="asset-list" id="propertiesList">
|
|
<!-- Properties will be populated dynamically -->
|
|
</ul>
|
|
</div>
|
|
<!-- Supplies Section -->
|
|
<div class="section-tile">
|
|
<h2>Supplies</h2>
|
|
<ul class="asset-list" id="suppliesList">
|
|
<!-- Supplies will be populated dynamically -->
|
|
</ul>
|
|
</div>
|
|
<!-- Transactions Section -->
|
|
<div class="section-tile">
|
|
<h2>Transactions</h2>
|
|
<ul class="transaction-list" id="transactionsList">
|
|
<!-- Transactions will be populated dynamically -->
|
|
</ul>
|
|
</div>
|
|
<!-- Memos Section -->
|
|
<div class="section-tile memo-section">
|
|
<div class="section-header">
|
|
<h2>Memos & Logs</h2>
|
|
<button id="addMemoBtn" class="add-btn">Add Memo</button>
|
|
</div>
|
|
<ul class="memo-list" id="memosList">
|
|
<!-- Memos will be populated dynamically -->
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|