diff --git a/frontend/create.html b/frontend/create.html
new file mode 100644
index 0000000..f408e3e
--- /dev/null
+++ b/frontend/create.html
@@ -0,0 +1,52 @@
+
+
+
+
+ watch party :D
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/create.mjs b/frontend/create.mjs
new file mode 100644
index 0000000..851daef
--- /dev/null
+++ b/frontend/create.mjs
@@ -0,0 +1,11 @@
+import { setupCreateSessionForm } from "./lib/create-session.mjs";
+
+const main = () => {
+ setupCreateSessionForm();
+};
+
+if (document.readyState === "complete") {
+ main();
+} else {
+ document.addEventListener("DOMContentLoaded", main);
+}
diff --git a/frontend/index.html b/frontend/index.html
index 7f3abd0..41a8707 100644
--- a/frontend/index.html
+++ b/frontend/index.html
@@ -3,7 +3,7 @@
watch party :D
-
+
@@ -16,6 +16,11 @@