forked from Dmitry1987/vault-chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathchooseMatch.html
More file actions
25 lines (25 loc) · 732 Bytes
/
Copy pathchooseMatch.html
File metadata and controls
25 lines (25 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!doctype html>
<html>
<head>
<title>Vault for Chrome: Multiple Matches Found</title>
<meta charset="utf-8" />
<script src="compat.js"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="header">
<div class="header__container">
<h1 class="h1 title">VaultPass</h1>
</div>
</header>
<main class="main">
<div role="alert" id="notify" aria-live="assertive"></div>
<label for="matchesList"
>Multiple matches were found, please choose:</label
>
<ul class="list" id="matchesList"></ul>
<button class="button" id="closePopupBtn">Close</button>
</main>
<script src="chooseMatch.js"></script>
</body>
</html>