summaryrefslogtreecommitdiff
path: root/web/login.html
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-05-17 15:25:52 +0300
committerPaul Buetow <paul@buetow.org>2026-05-17 15:25:52 +0300
commit914bd7cd6aa14e839332a98d91c30b19865b0cf2 (patch)
tree02b11537237a204048589e14ed24938b805e42f7 /web/login.html
parent3b24f0e1be832584d6550e8cc3e5d24329f66f90 (diff)
Restructure repo: move Go server into player-server/
Diffstat (limited to 'web/login.html')
-rw-r--r--web/login.html30
1 files changed, 0 insertions, 30 deletions
diff --git a/web/login.html b/web/login.html
deleted file mode 100644
index 8efc1d6..0000000
--- a/web/login.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
-<meta charset="UTF-8">
-<meta name="viewport" content="width=device-width, initial-scale=1.0">
-<title>Login — Player</title>
-<link rel="stylesheet" href="/css/theme.css">
-<link rel="stylesheet" href="/css/components.css">
-<link rel="stylesheet" href="/css/login.css">
-</head>
-<body>
-<div class="login-container" role="main">
- <div class="login-brand">
- <img src="/favicon.svg" alt="" class="login-logo">
- <h1>Player</h1>
- </div>
- <form id="login-form" class="login-form" novalidate>
- <label for="username">Username</label>
- <input type="text" id="username" name="username" autocomplete="username" required autofocus>
-
- <label for="password">Password</label>
- <input type="password" id="password" name="password" autocomplete="current-password" required>
-
- <button type="submit" class="btn btn-primary">Sign In</button>
- <p id="login-error" class="error-message" role="alert" aria-live="polite"></p>
- </form>
-</div>
-<script type="module" src="/js/app.js"></script>
-</body>
-</html>