Initial LinkLog implementation

This commit is contained in:
Olaf
2026-08-24 14:30:30 +02:00
commit 1c827956c4
50 changed files with 3436 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>LinkLog Settings</title>
<link rel="stylesheet" href="options.css" />
</head>
<body>
<main class="options-shell">
<h1>LinkLog Settings</h1>
<div id="status" class="status hidden" aria-live="polite"></div>
<form id="settings-form">
<label>
Backend URL
<input id="backend-url" type="url" placeholder="https://example.com" />
</label>
<label>
Username
<input id="username" type="text" placeholder="alice" />
</label>
<label>
Password
<input id="password" type="password" placeholder="********" />
</label>
<button type="submit">Save and log in</button>
</form>
</main>
<script src="options.js"></script>
</body>
</html>