-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathverify.html
125 lines (125 loc) · 4.41 KB
/
verify.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Verification</title>
<link href="style.css" rel="stylesheet">
</head>
<body class="header-bg">
<header>
<div class="relative">
<a href="#" id="chain" data-menu="chain-menu" title="Select Chain">
<img src="images/mainnet.webp" alt="Ethereum Logo">
<span>Ethereum Mainnet</span>
</a>
<menu id="chain-menu">
<li>
<a href="#mainnet" class="set-root">
<img src="images/mainnet.webp" alt="Ethereum Logo">
<span>Ethereum Mainnet</span>
</a>
</li>
<li>
<a href="#optimism" class="set-root">
<img src="images/optimism.webp" alt="Optimism Logo">
<span>Optimism</span>
</a>
</li>
<li>
<a href="#polygon" class="set-root">
<img src="images/polygon.webp" alt="Polygon Logo">
<span>Polygon</span>
</a>
</li>
<li>
<a href="#avalanche" class="set-root">
<img src="images/avalanche.webp" alt="Avalanche Logo">
<span>Avalanche</span>
</a>
</li>
</menu>
</div>
<div class="relative">
<a href="#" data-menu="account-menu" title="Connected Account">
<img src="images/chef.webp" alt="Profile Image">
<span>0xa48c…473a</span>
</a>
<menu id="account-menu">
<li>
<a href="#">
<span>View Account on Explorer</span>
</a>
</li>
<li>
<a href="#">
<span>Disconnect Wallet</span>
</a>
</li>
</menu>
</div>
<div class="relative">
<a href="#" data-menu="language-menu" title="Select Language">
<img src="images/uk.png" alt="British Flag">
<span>English</span>
</a>
<menu id="language-menu">
<li>
<a href="#" class="set-root">
<img src="images/uk.png" alt="British Flag">
<span>English</span>
</a>
</li>
<li>
<a href="#" class="set-root">
<img src="images/spain.png" alt="Spanish Flag">
<span>Espanol</span>
</a>
</li>
</menu>
</div>
</header>
<article id="wizard">
<h1>Coinpassport Verification</h1>
<menu>
<li rel="step1" class="active">1. Pay Fee</li>
<li rel="step2">2. Scan Document</li>
<li rel="step3">3. Publish Result</li>
</menu>
<main id="loading" class="hidden">
<div class="loader">
<div class="lds-ring"><div></div><div></div><div></div><div></div></div>
</div>
</main>
<main id="step1">
<p>Document verification costs 3 USDC.</p>
<p>Please approve and pay this amount.</p>
<button data-toggler="next">Approve</button>
<button disabled data-step="step2" data-toggler="prev">Pay Fee</button>
</main>
<main id="step2" class="hidden">
<p>You will be transfered to an external website to take a picture of your document and your face.</p>
<button data-step="step3">Perform Verification</button>
</main>
<main id="step3" class="hidden">
<p>You have successfully verified your identity.</p>
<p>Publish your unique hash to the blockchain in order to psuedonymously prove your being a unique human.</p>
<button data-step="active">Publish Result</button>
</main>
<main id="active" class="hidden">
<p>Your account is active!</p>
<button data-toggler="next">Redact</button>
<button disabled data-step="step1" data-toggler="prev">Revoke</button>
</main>
</article>
<footer>
<menu>
<li>© 2022</li>
<li><a href="index.html">Home</a></li>
<li><a href="#">Docs</a></li>
<li><a href="#">Privacy</a></li>
</menu>
</footer>
<script src="app.js"></script>
</body>
</html>