Files
Link-Log/webextension/options.html
T

43 lines
1.1 KiB
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">
<img class="extension-logo" src="logo.svg" alt="LinkLog" />
<h1>Settings</h1>
<div id="status" class="status hidden" aria-live="polite"></div>
<section id="logged-in" class="logged-in hidden" aria-live="polite">
<p id="session-summary"></p>
<button type="button" id="sign-out">Sign out</button>
</section>
<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>