
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.
28 lines
1.0 KiB
HTML
28 lines
1.0 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 - GMS</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>General Military Surplus</h1>
|
|
<div class="payment-method">
|
|
<select id="paymentMethod" class="payment-select" aria-label="Select Payment Method">
|
|
<option value="" disabled selected>Select Payment Method</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<main class="container">
|
|
<!-- Content will be dynamically populated -->
|
|
</main>
|
|
</body>
|
|
</html> |