-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
31 lines (29 loc) · 1.27 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Xumm Web2/Web3 - OAuth2 / PKCE samples</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
</head>
<body>
<div class="container mt-2 pb-4">
<h1>Xumm Web2/Web3</h1>
<h3>OAuth2 / PKCE samples</h3>
<p class="alert alert-primary text-center shadow mb-5">
Easy sign in with Xumm / Xumm sign requests, client side only. Using Web2 standards to offer a Web3 experience <b>without browser plugins</b>.
</p>
<ul class="list-unstyled text-center">
<li class="py-2">
<a class="btn btn-primary" href="jsmodule">Super simple (js <code class="fw-bold">module</code>)</a>
</li>
<li class="py-2">
<a class="btn btn-primary" href="jsmodule-payload">Simple <code class="fw-bold">jsmodule</code> with <b>sign request</b></a>
</li>
<li class="py-2">
<a class="btn btn-primary" href="promise-fancy"><code class="fw-bold">Promise</code> based (with UI)</a>
</li>
</ul>
</div>
</body>
</html>