37 lines
867 B
HTML
37 lines
867 B
HTML
<!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>
|