Advertisement
tool684

cashflow.html

Apr 17th, 2025
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.39 KB | Source Code | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pt-PT">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Cashflow Dashboard</title>
  7.     <link rel="stylesheet" href="./styles.css">
  8. </head>
  9. <body>
  10.     <h1>Cashflow Dashboard</h1>
  11.     <div class="filters">
  12.         <label>Data Início: <input type="date" id="startDate"></label>
  13.         <label>Data Fim: <input type="date" id="endDate"></label>
  14.         <label>Categoria: <input type="text" id="categoria"></label>
  15.         <label>Sub-Categoria: <input type="text" id="subCategoria"></label>
  16.         <label>Pesquisar: <input type="text" id="search" placeholder="Descrição ou Destino"></label>
  17.         <button onclick="loadData()">Filtrar</button>
  18.     </div>
  19.     <div class="upload">
  20.         <h3>Importar Excel</h3>
  21.         <input type="file" id="excelFile" accept=".xlsx">
  22.         <button onclick="uploadExcel()">Carregar</button>
  23.     </div>
  24.     <table id="transactionsTable">
  25.         <thead>
  26.             <tr>
  27.                 <th>Data Operação</th>
  28.                 <th>Descrição</th>
  29.                 <th>Montante (€)</th>
  30.                 <th>Destino</th>
  31.                 <th>Categoria</th>
  32.                 <th>Sub-Categoria</th>
  33.             </tr>
  34.         </thead>
  35.         <tbody id="transactionsBody"></tbody>
  36.     </table>
  37.     <script src="./script.js"></script>
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement