Added the ability to see the timeline data in the editor and added in a basic form.

Signed-off-by: rodude123 <rodude123@gmail.com>
This commit is contained in:
2022-10-09 16:02:07 +01:00
parent 992b4d95ed
commit a5c7d16991
14 changed files with 298 additions and 27 deletions
+2 -1
View File
@@ -39,10 +39,11 @@ document.querySelector("#login form").addEventListener("submit", e =>
{
method: "POST",
body: loginData
}).then(res =>
}).then(res => res.json()).then(json =>
{
if (res.ok)
{
localStorage.setItem("token", json.token);
window.location.href = "./editor.html";
return;
}