-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
51 lines (48 loc) · 4.07 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
<!DOCTYPE html>
<html>
<head>
<title>MakeCredential Example</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Ensure use of most common Unicode characters -->
<meta charset="utf-8">
<link rel="stylesheet" href="https://unpkg.com/spectre.css/dist/spectre.min.css">
<!-- Considered an "experimental" feature -->
<link rel="stylesheet" href="https://unpkg.com/spectre.css/dist/spectre-exp.min.css" />
<!-- Spectre.css icons are used -->
<link rel="stylesheet"href="https://unpkg.com/spectre.css/dist/spectre-icons.min.css">
</head>
<body>
<div class="container centered">
<div class="columns" style="margin-left: 15%; margin-right: 15%; margin-top: 10%;">
<div class="column col-4 text-center">
</div>
<div class="column col-4 text-center">
<div class="card">
<div class="card-header bg-gray">
<div class="card-title">
<h2>WebAuthn Intro samples</h2>
</div>
</div><!--- .card-header -->
<div class="card-body" style="text-align: left;">
<ul>
<li><a href="WebAuthnIntro/makeCredExample.html">MakeCredentials(NONE)</a> <a href="https://github.com/webauthnworks/PasskeysSamples/blob/master/WebAuthnIntro/makeCredExample.html">(SOURCE)</a></li>
<li><a href="WebAuthnIntro/makeCredExample.attestationDirect.html">MakeCredentials(DIRECT)</a> <a href="https://github.com/webauthnworks/PasskeysSamples/blob/master/WebAuthnIntro/makeCredExample.attestationDirect.html">(SOURCE)</a></li>
<li><a href="WebAuthnIntro/getAssertionExample.html">GetAssertion</a> <a href="https://github.com/webauthnworks/PasskeysSamples/blob/master/WebAuthnIntro/getAssertionExample.html">(SOURCE)</a></li>
<li><a href="WebAuthnIntro/BasicExample.html">Basic Authentication Example</a> <a href="https://github.com/webauthnworks/PasskeysSamples/blob/master/WebAuthnIntro/BasicExample.html">(SOURCE)</a></li>
<li><a href="WebAuthnIntro/BasicDirectExample.html">Basic Authentication with Attestation direct Example</a> <a href="https://github.com/webauthnworks/PasskeysSamples/blob/master/WebAuthnIntro/BasicDirectExample.html">(SOURCE)</a></li>
<li><a href="WebAuthnIntro/PasswordlessExample.html">Passwordless authentication Example</a> <a href="https://github.com/webauthnworks/PasskeysSamples/blob/master/WebAuthnIntro/PasswordlessExample.html">(SOURCE)</a></li>
<li><a href="WebAuthnIntro/UsernamelessExample.html">Usernameless authentication Example</a> <a href="https://github.com/webauthnworks/PasskeysSamples/blob/master/WebAuthnIntro/UsernamelessExample.html">(SOURCE)</a></li>
<li><a href="WebAuthnIntro/PlatformAuthenticatorExample.attestationDirect.html">Platform Authenticator Example</a> <a href="https://github.com/webauthnworks/PasskeysSamples/blob/master/WebAuthnIntro/PlatformAuthenticatorExample.attestationDirect.html">(SOURCE)</a></li>
<li><a href="WebAuthnIntro/UXFastTests.html">Quick Tests for different user experiences</a> <a href="https://github.com/webauthnworks/PasskeysSamples/blob/master/WebAuthnIntro/UXFastTests.html">(SOURCE)</a></li>
<li><a href="WebAuthnIntro/BadCredentialTests.html">Test bad credID flows</a> <a href="https://github.com/webauthnworks/PasskeysSamples/blob/master/WebAuthnIntro/BadCredentialTests.html">(SOURCE)</a></li>
<li><a href="WebAuthnIntro/PRFTest.html">@MasterKale PRF Tester</a> <a href="https://github.com/webauthnworks/PasskeysSamples/blob/master/WebAuthnIntro/PRFTest.html">(SOURCE)</a></li>
</ul>
</div>
</div>
</div>
<div class="column col-4 text-center">
</div>
</div>
</div>
</body>
</html>