35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>KeePassGO Browser Settings</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<main class="surface settings">
|
|
<header class="topbar">
|
|
<div>
|
|
<h1>Browser Settings</h1>
|
|
<p class="subtle">Configure how the extension reaches KeePassGO.</p>
|
|
</div>
|
|
</header>
|
|
<form id="settings-form" class="settings-form">
|
|
<label>
|
|
<span>gRPC address</span>
|
|
<input id="grpc-address" name="grpc-address" type="text" value="" placeholder="Leave blank for the local default socket" autocomplete="off">
|
|
</label>
|
|
<label>
|
|
<span>API token</span>
|
|
<textarea id="bearer-token" name="bearer-token" rows="6" spellcheck="false"></textarea>
|
|
</label>
|
|
<div class="actions">
|
|
<button type="submit">Save</button>
|
|
</div>
|
|
<p id="settings-status" class="subtle"></p>
|
|
</form>
|
|
</main>
|
|
<script src="options.js"></script>
|
|
</body>
|
|
</html>
|