-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
54 lines (48 loc) · 1.69 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebAuthn Autocomplete Playground</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 20px;
}
.container {
margin-top: 20px;
}
input, button {
margin-top: 10px;
}
#status {
margin-top: 20px;
}
</style>
</head>
<body>
<h1>WebAuthn Autocomplete Playground</h1>
<div class="container">
Regular cases
<ul>
<li><a href="webauthn.html">WebAuthn only</a></li>
<li><a href="username.html">Username only</a></li>
<li><a href="email.html">Email only</a></li>
<li><a href="phonenumber.html">Phone number only</a></li>
<li><a href="username-password.html">Username + Password</a></li>
<li><a href="email-password.html">Email + Password</a></li>
<li><a href="phonenumber-otp.html">Phone number + OTP</a></li>
<li><a href="username-email-password.html">Username + Email + Password</a></li>
<li><a href="username-email-otp.html">Username + Email + OTP</a></li>
<li><a href="textarea.html">Textarea</a></li>
</ul>
Edge cases
<ul>
<li><a href="username-two-logins.html">Two login forms (2x username) in one page</a></li>
<li><a href="email-two-logins.html">Two login forms (2x email) in one page</a></li>
<li><a href="username-email-two-logins.html">Two login forms (username + email) in one page</a></li>
<li><a href="webauthn-token-first.html">WebAuthn token first</a></li>
</ul>
</div>
</body>
</html>