HTMLify
goals.html
Views: 43 | Author: karbonsites
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>FinanceFlow | Goal Management</title> <link rel="stylesheet" href="style.css"> <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet"> </head> <body> <header class="app-header"> <div class="logo">FinanceFlow</div> <nav class="main-nav"> <a href="index.html" class="nav-item">Dashboard</a> <a href="payments.html" class="nav-item">Payments</a> <a href="debt.html" class="nav-item">Debt Mgt</a> <a href="goals.html" class="nav-item active">Goals</a> <a href="savings.html" class="nav-item">Savings Plan</a> <a href="reports.html" class="nav-item">Reports</a> <a href="settings.html" class="nav-item">Settings</a> </nav> </header> <main class="container"> <div class="page-header animate-in" data-delay="0.1"> <h1>Financial Goal Management</h1> <button class="btn btn-primary">+ Create New Goal</button> </div> <section class="card large-card animate-in" data-delay="0.2"> <h3>Active Savings Goals</h3> <div id="savings-goals-list" class="savings-goals-container"> <!-- Goal cards injected by JS --> </div> </section> <section class="card large-card animate-in" data-delay="0.3"> <h3>Goal Prioritization & Automation</h3> <div class="feature-row"> <div class="feature-card" style="border-left: 3px solid var(--md3-sys-color-primary);"> <h4>Automated Contributions</h4> <p>Set up recurring transfers directly towards active goals based on monthly surplus.</p> <button class="btn btn-primary mt-16">Setup Auto-Transfer</button> </div> <div class="feature-card" style="border-left: 3px solid var(--md3-sys-color-tertiary);"> <h4>Goal Weighting</h4> <p>Assign priority weights (1-10) to goals to determine allocation when surplus funds are limited.</p> <button class="btn btn-secondary mt-16">Adjust Weights</button> </div> </div> </section> <section class="card animate-in" data-delay="0.4"> <h3>Goal Contribution History</h3> <p class="small-text mb-16">Track manual and automated contributions over the last six months.</p> <div class="table-wrapper"> <table class="data-table"> <thead> <tr> <th>Goal</th> <th>Date</th> <th>Type</th> <th>Amount</th> </tr> </thead> <tbody> <tr> <td>New Laptop</td> <td>2024-07-10</td> <td>Manual</td> <td>₹10,000</td> </tr> <tr> <td>Emergency Fund</td> <td>2024-07-01</td> <td>Automated</td> <td>₹5,000</td> </tr> </tbody> </table> </div> </section> </main> <script src="script.js"></script> <a href="https://karbonsites.space/home" target="_blank" id="karbon-promo-banner"> <span>✨</span> <div>Built with <b>Karbon Sites</b></div> </a> </body> </html> |