diff options
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>  | 
