@blockcerts/blockcerts-verifier 1.38.0 → 1.43.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,36 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
6
+
7
+ <title>blockcerts-verifier demo</title>
8
+
9
+ <script src="./@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
10
+ <script type="module" src="./index.js"></script>
11
+ <script>
12
+ // HACK(keanulee): The Redux package assumes `process` exists - mock it here before
13
+ // the module is loaded.
14
+ window.process = {
15
+ env: {
16
+ NODE_ENV: 'development'
17
+ }
18
+ };
19
+ </script>
20
+ <style>
21
+ .main {
22
+ max-width: 700px;
23
+ margin: 0 auto;
24
+ width: 100%;
25
+ }
26
+ </style>
27
+ </head>
28
+ <body>
29
+ <div class="main">
30
+ <h3>Basic blockcerts-verifier demo - Explorer API</h3>
31
+ <p>/!\ This example does not work as expected, the custom resolver specified does not exist. /!\</p>
32
+ <!-- no resolver at this url, demo only-->
33
+ <blockcerts-verifier did-resolver-url="https://resolver.blockcerts.org"></blockcerts-verifier>
34
+ </div>
35
+ </body>
36
+ </html>