mirror of
https://github.com/bitwarden/browser
synced 2025-12-21 18:53:29 +00:00
* [deps] Autofill: Update prettier to v3 * prettier formatting updates --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jonathan Prusik <jprusik@classynemesis.com>
19 lines
536 B
HTML
19 lines
536 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Bitwarden WebAuthn Connector</title>
|
|
</head>
|
|
|
|
<body style="background: transparent">
|
|
<picture>
|
|
<source srcset="../images/u2fkey.avif" type="image/avif" />
|
|
<source srcset="../images/u2fkey.webp" type="image/webp" />
|
|
<img src="../images/u2fkey.jpg" class="rounded img-fluid mb-3" />
|
|
</picture>
|
|
<div class="text-center">
|
|
<button type="button" id="webauthn-button" class="btn btn-primary"></button>
|
|
</div>
|
|
</body>
|
|
</html>
|