18 lines
392 B
HTML
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>
|