all repos — piggy @ main

Dead simple finance manager in Go, HTML and JS.

static/records/index.html (view raw)

 1<!DOCTYPE html>
 2<html lang="en">
 3
 4<head>
 5    <meta charset="UTF-8">
 6    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 7    <title>Piggy - Records</title>
 8    <link rel="stylesheet" href="/css/styles.css">
 9</head>
10
11<body>
12    <header>
13        <nav></nav>
14    </header>
15    <main>
16        <h1>Records</h1>
17
18        <div id="main-container">
19            <table>
20                <thead id="records-header"></thead>
21                <tbody id="records-table"></tbody>
22                <tfoot></tfoot>
23            </table>
24        </div>
25
26        <div id="buttons">
27            <button id="new-record">New Record</button>
28        </div>
29    </main>
30    <script src="/js/common.js"></script>
31    <script src="/js/records.js"></script>
32</body>
33
34</html>