30 lines
870 B
HTML
30 lines
870 B
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>
|
|
<section>
|
|
<h2>Matches</h2>
|
|
<div id="matches" class="match-list"></div>
|
|
</section>
|
|
</main>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|