summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-04-29 07:50:31 +0300
committerPaul Buetow <paul@buetow.org>2026-04-29 07:50:31 +0300
commitaa95230758cd3487b5d4c55015c502c0f37e1760 (patch)
tree1cc18359b7753554cbf43dcf422641a4cee90414 /web
parent2de97cd74935b5215d2266a4ae0e06b34aa31a98 (diff)
feat: implement bcrypt password hashing, session management, login/logout handlers, and bootstrap flow (m9)
Diffstat (limited to 'web')
-rw-r--r--web/bootstrap.html10
-rw-r--r--web/index.html10
-rw-r--r--web/login.html10
3 files changed, 30 insertions, 0 deletions
diff --git a/web/bootstrap.html b/web/bootstrap.html
new file mode 100644
index 0000000..378b595
--- /dev/null
+++ b/web/bootstrap.html
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+<meta charset="UTF-8">
+<title>Bootstrap - KISS Media Player</title>
+</head>
+<body>
+<h1>First Admin Setup</h1>
+</body>
+</html>
diff --git a/web/index.html b/web/index.html
new file mode 100644
index 0000000..630ee64
--- /dev/null
+++ b/web/index.html
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+<meta charset="UTF-8">
+<title>KISS Media Player</title>
+</head>
+<body>
+<h1>Hello KISS</h1>
+</body>
+</html>
diff --git a/web/login.html b/web/login.html
new file mode 100644
index 0000000..ee2901c
--- /dev/null
+++ b/web/login.html
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+<meta charset="UTF-8">
+<title>Login - KISS Media Player</title>
+</head>
+<body>
+<h1>Login</h1>
+</body>
+</html>