diff options
author | Alexis Hovorka <[email protected]> | 2024-07-27 19:43:38 -0600 |
---|---|---|
committer | Alexis Hovorka <[email protected]> | 2024-07-27 19:43:38 -0600 |
commit | 4702402484a773c0eccf7415d0318e367fb996e1 (patch) | |
tree | 54f4857f5664b7f40815c580493bf08adc4dbe88 /app/public/index.html | |
parent | caa495340aef5b765bed193da51cd4bf48a4d570 (diff) |
Diffstat (limited to 'app/public/index.html')
-rw-r--r-- | app/public/index.html | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/app/public/index.html b/app/public/index.html index 593e6b3..d900888 100644 --- a/app/public/index.html +++ b/app/public/index.html @@ -89,8 +89,8 @@ <input type="text" id="new-username" name="newUsername" placeholder="New username" autocomplete="none" autocorrect="off" autocapitalize="off" spellcheck="false"> <button id="change-username">Change username</button> <br> - <button id="log-out">Log out</button> - <button id="log-out-everywhere">Log out everywhere</button> + <button id="sign-out">Sign out</button> + <button id="sign-out-everywhere">Sign out everywhere</button> <br> <!--input type="text" inputmode="search" id="search" name="search" placeholder="Search…" list="search-hints"--> <input type="search" id="search" name="search" placeholder="Search…" list="search-hints" incremental> @@ -110,7 +110,11 @@ <button class="toolbar-fab" id="add-btn"></button> </div> - <!--script src="sock.js"></script--> - <script src="main.js"></script> + <script type="module"> + import Ponys from "./ponys.js"; + Ponys.defineAll(); + </script> + <template name="note-card" src="./note-ponys.html"></template> + <script type="module" src="main.js"></script> </body> </html> |