
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.
70 lines
2.8 KiB
HTML
70 lines
2.8 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 - Locker</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>Locker</h1>
|
|
<div class="storage-stats">
|
|
<div class="stat-item">
|
|
<div class="stat-icon">📦</div>
|
|
<div class="stat-info">
|
|
<span class="stat-label">Storage Space</span>
|
|
<span class="stat-value" id="storageSpace">0/100</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">Items Stored</span>
|
|
<span class="stat-value" id="itemCount">0</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="container">
|
|
<div class="category-filters" id="categoryFilters">
|
|
<button class="filter-btn active" data-category="all">All Items</button>
|
|
<button class="filter-btn" data-category="weapons">Weapons</button>
|
|
<button class="filter-btn" data-category="clothing">Clothing</button>
|
|
<button class="filter-btn" data-category="equipment">Equipment</button>
|
|
<button class="filter-btn" data-category="magazines">Magazines</button>
|
|
</div>
|
|
|
|
<div class="sections-grid">
|
|
<!-- Current Equipment Section -->
|
|
<div class="equipment-section player-equipment">
|
|
<div class="section-header">
|
|
<h2>Current Equipment</h2>
|
|
</div>
|
|
<div class="equipment-list" id="playerEquipment">
|
|
<!-- Player equipment will be populated dynamically -->
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Storage Section -->
|
|
<div class="equipment-section stored-equipment">
|
|
<div class="section-header">
|
|
<h2>Stored Equipment</h2>
|
|
</div>
|
|
<div class="equipment-list" id="storedEquipment">
|
|
<!-- Stored equipment will be populated dynamically -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|