forked from blockchain-certificates/blockcerts-verifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (70 loc) · 2.13 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
<title>blockcerts-verifier demo</title>
</head>
<body>
<h1>Blockcerts Universal Verifier</h1>
<section>
<h1>Classic usage</h1>
<ul>
<li>
<a href="./no-api.html">No API usage</a>
</li>
</ul>
</section>
<section>
<h1>Using component API</h1>
<ul>
<li>
<a href="./with-api-certificate.html">Certificate passed directly to component</a>
</li>
<li>
<a href="./disable-verify-flag.html">Disabling verification</a>
</li>
<li>
<a href="./disable-auto-verify-flag.html">Disabling auto verification</a>
</li>
<li>
<a href="./allow-download-flag.html">Allowing download of certificate</a>
</li>
<li>
<a href="./allow-social-share-flag.html">Allowing social networks sharing of certificate</a>
</li>
<li>
<a href="./display-mode-card.html">Display Certificate in Card mode</a>
</li>
<li>
<a href="./display-mode-full.html">Display Certificate in Full mode</a>
</li>
<li>
<a href="./display-mode-fullscreen.html">Display Certificate in Fullscreen mode</a>
</li>
<li>
<a href="./show-metadata.html">Showing metadata</a>
</li>
</ul>
</section>
<section>
<h1>Event API</h1>
<ul>
<li>
<a href="events.html">Events examples</a>
</li>
</ul>
</section>
<section>
<h1>Theming</h1>
<ul>
<li>
<a href="dark-theme.html">Using in a dark environment</a>
</li>
<li>
<a href="bright-theme.html">Using in a bright environment</a>
</li>
</ul>
</section>
</body>
</html>