diff options
author | Alexis Hovorka <[email protected]> | 2024-02-13 23:11:36 -0700 |
---|---|---|
committer | Alexis Hovorka <[email protected]> | 2024-02-13 23:11:36 -0700 |
commit | 70d3a32ae766dc15fd6c21e382068f44dbaff8b8 (patch) | |
tree | c288685745e0681dc5417fe64d7495a5aae06c36 /app/public/index.html | |
parent | af96e03db9eab2a468561d1d82a32e8a7b01da90 (diff) |
[feat] Flesh out auth flow and note store
Diffstat (limited to 'app/public/index.html')
-rw-r--r-- | app/public/index.html | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/app/public/index.html b/app/public/index.html index 3c435f5..d5932a1 100644 --- a/app/public/index.html +++ b/app/public/index.html @@ -52,12 +52,31 @@ <meta name="author" content="Alexis Hovorka"> <meta name="description" content="Zettelkasten-inspired note taking web app"> - <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400&display=swap"> + <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,700&display=swap"> <link rel="stylesheet" href="style.css"> </head> <body> <h1>Notes</h1> + <form> + <input type="text" id="username" name="username"> + <input type="password" id="password" name="password"> + <input type="checkbox" id="keep-session" name="keepSession"> + <button id="login">Log In</button> + </form> + <br> + <input type="password" id="new-password" name="newPassword"> + <button id="change-password">Change Password</button> + <br> + <input type="text" id="new-username" name="newUsername"> + <button id="change-username">Change Username</button> + <br> + <input type="text" id="uid" name="uid"> + <button id="logout">Log Out</button> + <button id="logout-everywhere">Log Out Everywhere</button> + <div id="notes"></div> + <button id="new-note">New Note</button> + <!--script src="sock.js"></script--> <script src="main.js"></script> </body> |