diff options
author | Mark Powers <markppowers0@gmail.com> | 2020-10-19 21:55:02 -0500 |
---|---|---|
committer | Mark Powers <markppowers0@gmail.com> | 2020-10-19 21:55:02 -0500 |
commit | e0a4d1bb1339e80775aa37efaf8cac314278f8e9 (patch) | |
tree | 91c09487df6793e4faaed4c0a883cba2ae199d20 /src/templates/about.html | |
parent | ad24db7fe9fca72c38caaa40d2ada8cbeb04994d (diff) |
Add navigation template and logout
Diffstat (limited to 'src/templates/about.html')
-rw-r--r-- | src/templates/about.html | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/src/templates/about.html b/src/templates/about.html index 3a80b50..d4f215f 100644 --- a/src/templates/about.html +++ b/src/templates/about.html @@ -2,21 +2,14 @@ <html lang="en"> <head> - <title>Mark's Database - Login</title> + <title>About</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"> + <link rel="stylesheet" type="text/css" href="static/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> + <div class="main"> <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> @@ -30,6 +23,7 @@ <li><em>Goals</em> can be used to subdivide net savings into categories. It is still W.I.P.</li> </ol> </div> + {{> navigation}} </body> </html>
\ No newline at end of file |