diff options
author | Mark Powers <markppowers0@gmail.com> | 2020-10-19 17:58:08 -0500 |
---|---|---|
committer | Mark Powers <markppowers0@gmail.com> | 2020-10-19 17:58:08 -0500 |
commit | 43a0e72c9955fd2900492530ab283d083b617ba8 (patch) | |
tree | f0786ff93d3f53b55cac5b67f33f48d2ee73734d /src/templates/about.html | |
parent | c2a5c1a32a6a818ba4830112c5ac4e5992f14762 (diff) |
Add about and signup
Diffstat (limited to 'src/templates/about.html')
-rw-r--r-- | src/templates/about.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/templates/about.html b/src/templates/about.html new file mode 100644 index 0000000..314545e --- /dev/null +++ b/src/templates/about.html @@ -0,0 +1,34 @@ +<!doctype html> +<html lang="en"> + +<head> + <title>Mark's Database - Login</title> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> + <link rel="stylesheet" type="text/css" href="/css/styles.css"> +</head> + +<body> + <div> + <a href="/ledger"><button class="bold">Ledger</button></a> + <a href="/summary"><button>Summary</button></a> + <a href="/goals"><button>Goals</button></a> + <a href="/expected"><button>Expected</button></a> + <a href="/about"><button>About</button></a> + </div> + <div> + <h1>About</h1> + <p>Welcome to the alpha budget app! You've been given exclusive access to this secret trial</p> + <p>Here is how I use this site</p> + <ol> + <li>Expenses go in <em>Ledger</em>. Income also goes in the ledger as negative</li> + <li>The category I use for big categories: bills, groceries, restaurants</li> + <li>Inside tags (which aren't csv yet) I have specifics: internet, coffee, gas</li> + <li><em>Summary</em> gives some view of where money is going and coming from</li> + <li><em>Expected</em> is what I expect in an out, for a period of days. For example, I pay internet every 31 days, and renew my domain every 365 days</li> + <li><em>Goals</em> can be used to subdivide net savings into categories. It is still W.I.P.</li> + </ol> + </div> +</body> + +</html>
\ No newline at end of file |