| 123456789101112131415161718 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>Passwordless Demo</title>
- </head>
- <body>
- <h1>Passwordless Demo</h1>
- <div>
- <label for="username">Login:</label>
- <input id="username" type="text" value="My UserName" minlength="3" />
- </div>
- <div>
- <button id="register">Register</button>
- <button id="login">Login</button>
- </div>
- <script src="main.js"></script>
- </body>
- </html>
|