Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
inozemtsev-roman authored Mar 13, 2024
1 parent 4e5d9a8 commit 5e20034
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions connect/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Connect Fingerprint Scanner</title>
</head>
<body>
Close this page after confirming the connection in the Fingerprint Scanner
<script>
const urlSearchParams = new URLSearchParams(window.location.search);
const deeplink = urlSearchParams.get('connect');
if (deeplink) {
window.location.assign(deeplink);
}
</script>
</body>
</html>

0 comments on commit 5e20034

Please sign in to comment.