forked from WebauthnWorks/PasskeysSamples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (44 loc) · 3.14 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
<!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/herrjemand/FIDO2WebAuthnSeries/blob/master/WebAuthnIntro/makeCredExample.html">(SOURCE)</a></li>
<li><a href="WebAuthnIntro/makeCredExample.attestationDirect.html">MakeCredentials(DIRECT)</a> <a href="https://github.com/herrjemand/FIDO2WebAuthnSeries/blob/master/WebAuthnIntro/makeCredExample.attestationDirect.html">(SOURCE)</a></li>
<li><a href="WebAuthnIntro/getAssertionExample.html">GetAssertion</a> <a href="https://github.com/herrjemand/FIDO2WebAuthnSeries/blob/master/WebAuthnIntro/getAssertionExample.html">(SOURCE)</a></li>
<li><a href="WebAuthnIntro/BasicExample.html">Basic Authentication Example</a> <a href="https://github.com/herrjemand/FIDO2WebAuthnSeries/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/herrjemand/FIDO2WebAuthnSeries/blob/master/WebAuthnIntro/BasicDirectExample.html">(SOURCE)</a></li>
<li><a href="WebAuthnIntro/PasswordlessExample.html">Passwordless authentication Example</a> <a href="https://github.com/herrjemand/FIDO2WebAuthnSeries/blob/master/WebAuthnIntro/PasswordlessExample.html">(SOURCE)</a></li>
<li><a href="WebAuthnIntro/UsernamelessExample.html">Usernamekess authentication Example (EDGE FIDO2 KEY ONLY)</a> <a href="https://github.com/herrjemand/FIDO2WebAuthnSeries/blob/master/WebAuthnIntro/UsernamelessExample.html">(SOURCE)</a></li>
</ul>
</div>
</div>
</div>
<div class="column col-4 text-center">
</div>
</div>
</div>
</body>
</html>