aboutsummaryrefslogtreecommitdiff
path: root/src/public
diff options
context:
space:
mode:
Diffstat (limited to 'src/public')
-rw-r--r--src/public/css/style.css8
-rw-r--r--src/public/fonts/ShareTechMono.ttfbin0 -> 42756 bytes
-rw-r--r--src/public/index.html11
-rw-r--r--src/public/js/login.js18
-rw-r--r--src/public/js/setup.js21
-rw-r--r--src/public/script.js0
-rw-r--r--src/public/style.css0
-rw-r--r--src/public/test.html13
8 files changed, 47 insertions, 24 deletions
diff --git a/src/public/css/style.css b/src/public/css/style.css
index e69de29..d72bbc5 100644
--- a/src/public/css/style.css
+++ b/src/public/css/style.css
@@ -0,0 +1,8 @@
+@font-face {
+ font-family: "Share Tech Mono";
+ src: url("/fonts/ShareTechMono.ttf") format("TrueType");
+}
+
+body {
+ font-family: "Share Tech Mono", monospace;
+} \ No newline at end of file
diff --git a/src/public/fonts/ShareTechMono.ttf b/src/public/fonts/ShareTechMono.ttf
new file mode 100644
index 0000000..c8e530f
--- /dev/null
+++ b/src/public/fonts/ShareTechMono.ttf
Binary files differ
diff --git a/src/public/index.html b/src/public/index.html
deleted file mode 100644
index 99a87cd..0000000
--- a/src/public/index.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width" />
- <title>Index</title>
- </head>
- <body>
- body
- </body>
-</html>
diff --git a/src/public/js/login.js b/src/public/js/login.js
new file mode 100644
index 0000000..681b02f
--- /dev/null
+++ b/src/public/js/login.js
@@ -0,0 +1,18 @@
+const form = document.getElementById("login-form");
+
+form.addEventListener('submit', async e => {
+ e.preventDefault();
+ const username = document.getElementById("username").value;
+ const password = document.getElementById("password").value;
+
+ const body = JSON.stringify({username, password});
+
+ const resp = await fetch("/user/login", {
+ method: "POST",
+ headers: {'Content-Type': 'application/json'},
+ body,
+ });
+ const res = await resp.json();
+ if (res.success) location.replace("/");
+ else alert("ASJHDOAISJDLKAJSD");
+}) \ No newline at end of file
diff --git a/src/public/js/setup.js b/src/public/js/setup.js
new file mode 100644
index 0000000..ef31e18
--- /dev/null
+++ b/src/public/js/setup.js
@@ -0,0 +1,21 @@
+const form = document.getElementById("setup-form");
+
+form.addEventListener('submit', async e => {
+ e.preventDefault();
+ const username = document.getElementById('username').value;
+ const email = document.getElementById('email').value;
+ const password = document.getElementById('password').value;
+ const admin = true;
+
+ const body = JSON.stringify({username, email, password, admin});
+
+ const resp = await fetch("/user/register", {
+ method: "POST",
+ headers: {'Content-Type': 'application/json'},
+ body,
+ })
+ const res = await resp.json();
+ if (res.success) location.replace("/user/login");
+ else alert("ASJHDOAISJDLKAJSD");
+
+}) \ No newline at end of file
diff --git a/src/public/script.js b/src/public/script.js
deleted file mode 100644
index e69de29..0000000
--- a/src/public/script.js
+++ /dev/null
diff --git a/src/public/style.css b/src/public/style.css
deleted file mode 100644
index e69de29..0000000
--- a/src/public/style.css
+++ /dev/null
diff --git a/src/public/test.html b/src/public/test.html
deleted file mode 100644
index b188db3..0000000
--- a/src/public/test.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
- <head>
- <meta charset="UTF-8" />
- <title>Title</title>
- </head>
- <body>
- <h1>Home :)</h1>
- <% if (name) { %>
- <h1>hello, <%= name %>!</h1>
- <% } %>
- </body>
-</html>