
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.
102 lines
4.3 KiB
HTML
102 lines
4.3 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 - FDIC</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>Federal Deposit Insurance Corporation</h1>
|
|
<div class="balance-display">
|
|
<div class="balance-item">
|
|
<div class="balance-icon">💰</div>
|
|
<div class="balance-info">
|
|
<span class="balance-label">Wallet Balance</span>
|
|
<span class="balance-amount" id="walletBalance">$0</span>
|
|
</div>
|
|
</div>
|
|
<div class="balance-divider"></div>
|
|
<div class="balance-item">
|
|
<div class="balance-icon">🏦</div>
|
|
<div class="balance-info">
|
|
<span class="balance-label">Account Balance</span>
|
|
<span class="balance-amount" id="accountBalance">$0</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="container">
|
|
<div class="actions-grid"> <!-- Transfer Between Accounts -->
|
|
<div class="action-tile">
|
|
<h2>Transfer Money</h2>
|
|
<form id="transferForm">
|
|
<div class="form-group">
|
|
<label for="transferType">Transfer From</label>
|
|
<select id="transferType" required>
|
|
<option value="to_wallet">Account to Wallet</option>
|
|
<option value="to_account">Wallet to Account</option>
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="transferAmount">Amount</label>
|
|
<input type="number" id="transferAmount" min="1" step="1" required>
|
|
</div>
|
|
<button type="submit" class="submit-btn">Transfer</button>
|
|
</form>
|
|
</div>
|
|
|
|
<!-- Transfer to Player -->
|
|
<div class="action-tile">
|
|
<h2>Transfer to Player</h2>
|
|
<form id="transferPlayerForm">
|
|
<div class="form-group">
|
|
<label for="playerSelect">Player</label>
|
|
<select id="playerSelect" required>
|
|
<option value="" disabled selected>Select Player</option>
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="playerTransferAmount">Amount</label>
|
|
<input type="number" id="playerTransferAmount" min="1" step="1" required>
|
|
</div>
|
|
<button type="submit" class="submit-btn">Send Money</button>
|
|
</form>
|
|
</div>
|
|
|
|
<!-- Submit Timesheet -->
|
|
<div class="action-tile">
|
|
<h2>Submit Timesheet</h2>
|
|
<form id="timesheetForm">
|
|
<div class="form-group">
|
|
<label for="hoursWorked">Hours Worked</label>
|
|
<input type="number" id="hoursWorked" min="1" step="0.5" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="hourlyRate">Hourly Rate</label>
|
|
<input type="number" id="hourlyRate" min="1" step="1" required>
|
|
</div>
|
|
<button type="submit" class="submit-btn">Submit Timesheet</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Transaction History -->
|
|
<section class="history-section">
|
|
<h2>Transaction History</h2>
|
|
<ul class="history-list" id="transactionHistory">
|
|
<!-- Transactions will be added here dynamically -->
|
|
</ul>
|
|
</section>
|
|
</main>
|
|
</body>
|
|
</html>
|