Webauthn_client_vite/index.html
2025-11-27 01:23:00 +01:00

18 lines
392 B
HTML

<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8" />
<title>WebAuthn Client</title>
</head>
<body>
<h1>Demo WebAuthn</h1>
<label for="username">Username:</label>
<input type="text" id="username" value="fabio" />
<button id="registerBtn">Registrati</button>
<button id="loginBtn">Login</button>
<script type="module" src="/src/main.js"></script>
</body>
</html>