46 lines
1.5 KiB
HTML
46 lines
1.5 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</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body class="popup">
|
|
<main class="surface">
|
|
<header class="topbar">
|
|
<div>
|
|
<h1>KeePassGO</h1>
|
|
<p id="page-host" class="subtle">Checking current page</p>
|
|
</div>
|
|
<a href="options.html" target="_blank" rel="noreferrer" class="link-button">Settings</a>
|
|
</header>
|
|
<section id="status-card" class="status-card">
|
|
<strong id="status-title">Loading</strong>
|
|
<p id="status-message" class="subtle">Checking KeePassGO.</p>
|
|
</section>
|
|
<p id="page-hint" class="inline-hint subtle">Loading page state.</p>
|
|
<section id="save-card" class="save-card" hidden>
|
|
<div>
|
|
<h2>Save Submitted Login</h2>
|
|
<p id="save-message" class="subtle">KeePassGO can save this login.</p>
|
|
</div>
|
|
<button id="save-action" type="button">Save Login</button>
|
|
</section>
|
|
<section>
|
|
<h2>Matches</h2>
|
|
<div id="matches" class="match-list"></div>
|
|
</section>
|
|
<section class="search-section">
|
|
<h2>Search Vault</h2>
|
|
<form id="search-form" class="search-form">
|
|
<input id="search-query" type="search" placeholder="Search entries" autocomplete="off">
|
|
<button type="submit">Search</button>
|
|
</form>
|
|
<div id="search-results" class="match-list"></div>
|
|
</section>
|
|
</main>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|