This repository was archived by the owner on Jul 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
460 lines (441 loc) · 24 KB
/
index.html
File metadata and controls
460 lines (441 loc) · 24 KB
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="content-language" content="en-us">
<meta name="description" content="Authereum is a fully non-custodial login process that utilizes ENS and web 2.0 style security to enable an onboarding experience that aims to reduce friction by providing new users with training wheels and abstracting away complex interactions that they are not accustomed to while still not deviating from decentralization principles.">
<meta name="keywords" content="ethereum, auth, authentication,blockchain, universal login, ethereum login, ethereum auth">
<meta name="robots" content="index,follow">
<meta name="googlebot" content="index,follow">
<meta name="application-name" content="Authereum">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=yes">
<link rel="shortcut icon" href="/favicon.png"/>
<link rel="canonical" href="https://authereum.org/">
<title>Authereum — Authentication on Ethereum</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
@keyframes strokeShield {
0% {
opacity: 0;
}
30% {
opacity: 1;
}
50% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes fillShield {
0% {
fill: transparent;
}
50% {
fill: #ff4c2e;
}
100% {
fill: #ff4c2e;
}
}
@keyframes strokeText {
0% {
opacity: 0;
}
30% {
opacity: 1;
}
50% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes fillText {
0% {
fill: transparent;
}
50% {
fill: #fff;
}
100% {
fill: #fff;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
transform: translate(0, 0);
}
}
@keyframes transitionUp {
0% {
}
100% {
transform: translate(0, 0);
}
}
.path {
fill: none;
stroke: none;
stroke-width: 2px;
stroke-linecap: round;
}
.one {
animation: strokeShield 6s ease-in forwards 0.2s, fillShield 2s linear forwards 1.8s;
stroke-dasharray: 3000;
stroke-dashoffset: 3000;
stroke: #ff4c2e;
}
.two {
animation: strokeShield 5s ease-in forwards 0.2s, fillShield 2s linear forwards 1.8s;
stroke-dasharray: 1000;
stroke-dashoffset: 1000;
stroke: #ff4c2e;
}
.three {
animation: strokeShield 6s ease-in forwards 0.2s, fillShield 2s linear forwards 1.8s;
stroke-dasharray: 1000;
stroke-dashoffset: 1000;
stroke: #ff4c2e;
}
.logo svg {
transform: translate(0, 10px);
animation: transitionUp 3s ease-out forwards 1.8s;
}
.svg_text {
animation: strokeText 4s ease-in forwards 1s, fillText 1.5s linear forwards 2s;
stroke-dasharray: 1000;
stroke-dashoffset: 1000;
fill: none;
stroke: #fff;
stroke-width: 2px;
stroke-linecap: round;
}
.fadeIn {
transform: translate(0, 0.1em);
opacity: 0;
animation: fadeIn 1s ease-out forwards 2s;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
color: rgba(14,30,37,.54);
background: #011d33 url(assets/background-triangles.svg) no-repeat center bottom ;
background-attachment: fixed;
background-size: cover;
}
@media(max-width: 400px) {
body {
font-size: 1.1em;
}
}
.hero {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding: 4em 1em 1em 1em;
color: white;
}
.logo {
width: 260px;
}
.logo svg {
width: 100%;
height: 100%;
}
.text {
max-width: 280px;
}
h1 {
font-size: 2em;
font-weight: 500;
margin: 1em 0 0.4em 0;
}
h1 svg {
width: 100%;
height: 100%;
max-width: 300px;
}
@media(max-width: 400px) {
.logo {
max-width: 160px;
}
.text {
max-width: 200px;
}
h1 {
margin-top: 0.5em;
}
}
.tagline {
color: #7f8288;
font-weight: 300;
}
.comingsoon {
display: block;
color: #7f8288;
text-align: center;
font-size: 0.7em;
}
.demo {
color: #7f8288;
text-align: center;
}
.demo .button {
font-size: 1.2em;
}
.demo p {
margin-top: 0.3em;
font-size: 0.8em;
}
.link {
color: #fe4c2e;
text-decoration: none;
}
.link:hover {
text-decoration: underline;
}
.subscribe {
padding: 4em 1em;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.subscribe form {
display: inline-block;
width: 100%;
max-width: 600px;
}
.lead {
color: rgba(14,30,37,.87);
font-weight: 500;
margin-bottom: 1em;
}
.card {
background-color: #fff;
border-radius: 8px;
padding: 2em;
width: 100%;
max-width: 600px;
}
.subscribe input[type="email"] {
-webkit-appearance: none;
-moz-appearance: none;
background: 0 0;
border: 2px solid #e9ebeb;
border-radius: 4px;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-box-sizing: border-box;
box-sizing: border-box;
color: #0e1e24;
display: block;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
font-size: 16px;
font-weight: 500;
height: 40px;
line-height: 24px;
margin: 0;
padding: 6px 14px;
-webkit-transition: -webkit-box-shadow ease-in-out .15s;
transition: -webkit-box-shadow ease-in-out .15s;
transition: box-shadow ease-in-out .15s;
transition: box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
width: 100%;
margin-bottom: 2em;
}
.subscribe input[type="email"]:focus {
border-color: #f4bb00;
-webkit-box-shadow: 0 0 1px 0 #f4bb00;
box-shadow: 0 0 1px 0 #f4bb00;
outline: 0;
}
.subscribe label {
font-size: 0.8em;
color: rgba(14,30,37,.54);
font-weight: 500;
}
.button,
.subscribe input[type="submit"] {
background: #FF4C2F;
border: 0;
border-radius: 4px;
box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 2px 4px 0 rgba(14,30,37,.12);
box-sizing: border-box;
color: #fff;
cursor: pointer;
display: inline-block;
font-family: inherit;
font-size: .9rem;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
font-weight: 500;
line-height: 1.618em;
outline: 0;
padding: .382em 1em;
position: relative;
text-align: center;
text-decoration: none;
transition: all .15s ease;
vertical-align: middle;
z-index: 1;
}
.button:hover,
.subscribe input[type="submit"]:hover {
background: #ff5f45;
}
.footer {
color: #717e82;
display: block;
padding: 2em 1em;
}
.footer .container {
max-width: 600px;
margin: 0 auto;
}
.footer div {
margin-bottom: 0em;
}
.footer .links {
display: flex;
}
@media (max-width: 400px) {
.footer .links {
flex-direction: column;
}
}
.footer a {
background: 0 0;
border-radius: 4px;
color: inherit;
font-weight: 600;
line-height: 24px;
padding: 8px;
text-decoration: none;
-webkit-transition: background-color,color .3s ease;
transition: background-color,color .3s ease;
}
.footer a:hover {
color: #fff;
}
.footer small {
font-size: .875em;
font-weight: 400;
margin-left: 8px;
}
</style>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-39494276-14"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-39494276-14');
</script>
</head>
<body>
<div class="hero">
<div class="logo">
<?xml version="1.0" encoding="UTF-8"?>
<svg width="298px" height="298px" viewBox="0 0 298 298" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch -->
<title>Artboard</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Artboard" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect id="Rectangle" x="19" y="0" width="289" height="289"></rect>
<g id="logo" transform="translate(54.000000, 41.000000)" fill="#FF4C2F" fill-rule="nonzero">
<g id="Group" transform="translate(95.500000, 117.500000) scale(-1, 1) rotate(-180.000000) translate(-95.500000, -117.500000) ">
<path class="path one" d="M46.5966184,228.272549 C35.4318841,224.770588 20.3917874,219.978431 13.194686,217.67451 L0,213.527451 L0,166.25098 C0,115.011765 0.276811594,111.694118 5.25942029,96.7647059 C9.87294686,82.9411765 19.1,67.827451 29.7111111,56.8607843 C32.9405797,53.5431373 48.9033816,39.4431373 65.1429952,25.4352941 L94.8541063,0 L125.672464,26.4490196 C142.557971,41.0098039 158.797585,55.5705882 161.657971,58.7960784 C173.56087,71.7901961 182.32657,88.1019608 187.032367,105.519608 L189.523671,114.55098 L189.892754,164.039216 L190.169565,213.435294 L182.511111,215.831373 C178.266667,217.121569 163.22657,221.913725 149.016908,226.337255 C134.807246,230.852941 122.996618,234.447059 122.812077,234.262745 C122.719807,234.170588 125.303382,228.641176 128.717391,222.190196 L134.899517,210.301961 L152.523188,204.772549 L170.23913,199.335294 L170.23913,158.786275 C170.23913,119.25098 170.14686,118.052941 168.024638,110.035294 C164.149275,95.2901961 157.413527,82.8490196 147.079227,71.7901961 C144.12657,68.5647059 131.116425,56.7686275 118.198551,45.7098039 L94.8541063,25.527451 L92.3628019,27.7392157 C91.0710145,28.9372549 79.6294686,38.7980392 66.9884058,49.5803922 C41.5217391,71.4215686 34.9705314,78.6098039 28.1425121,92.4333333 C20.1149758,108.652941 19.9304348,109.666667 19.5613527,157.403922 L19.2845411,199.335294 L36.815942,204.772549 L54.4396135,210.301961 L57.7613527,216.752941 C59.6067633,220.347059 62.5594203,225.876471 64.3125604,229.101961 C66.0657005,232.235294 67.3574879,234.815686 67.1729469,234.723529 C67.0806763,234.723529 57.7613527,231.77451 46.5966184,228.272549 Z" id="Shape"></path>
<path class="path two" d="M66.5270531,181.733333 L38.5690821,128.835294 L39.2149758,123.95098 C40.1376812,117.131373 41.8908213,111.233333 45.3048309,104.413725 C50.8410628,93.1705882 48.5342995,90.4980392 72.8014493,136.668627 C84.6120773,159.247059 94.5772947,177.678431 94.9463768,177.678431 C95.2231884,177.678431 105.280676,159.431373 117.183575,137.129412 C129.086473,114.827451 139.236232,96.7647059 139.789855,96.8568627 C141.542995,97.5019608 148.278744,111.970588 149.29372,117.407843 C151.692754,130.033333 153.999517,124.319608 123.827053,180.443137 C108.694686,208.55098 95.9613527,232.327451 95.4077295,233.156863 C94.7618357,234.447059 88.7642512,223.84902 66.5270531,181.733333 Z" id="Shape"></path>
<path class="path three" d="M81.1980676,107.178431 C73.8164251,92.7098039 67.72657,80.545098 67.542029,80.1764706 C67.3574879,79.5313725 74.2777778,73.3568627 93.3777778,57.1372549 C94.7618357,55.9392157 96.2381643,56.9529412 108.417874,67.5509804 C115.799517,74.0019608 121.797101,79.4392157 121.797101,79.6235294 C121.797101,80.1764706 95.0386473,133.443137 94.7618357,133.443137 C94.6695652,133.443137 88.5797101,121.554902 81.1980676,107.178431 Z" id="Shape"></path>
</g>
</g>
</g>
</svg>
</div>
<h1>
<div class="text">
<?xml version="1.0" encoding="UTF-8"?>
<svg width="845px" height="155px" viewBox="0 0 845 155" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch -->
<title>text</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="text" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(17.000000, 4.000000)" fill="#FFFFFF" fill-rule="nonzero" id="Group">
<g transform="translate(403.000000, 64.500000) scale(-1, 1) rotate(-180.000000) translate(-403.000000, -64.500000) translate(0.000000, -0.000000)">
<path class="svg_text" d="M288.767439,107.835499 L288.767439,87.3723128 L292.132901,88.2149145 C293.935826,88.6964013 299.705188,89.0575163 304.99377,89.1778879 C317.253667,89.1778879 324.22498,86.6500825 330.715512,79.5481534 C338.407997,71.2425071 339.249361,66.4276398 339.249361,32.3624538 L339.249361,3.11213479 L330.354928,3.11213479 L321.460493,3.11213479 L320.979713,32.3624538 C320.619129,59.0849672 320.378738,61.8535161 318.215227,65.7054098 C314.609376,71.7239939 308.479428,73.6499409 297.661872,72.2054807 L289.368414,71.1221355 L289.00783,37.1773211 L288.767439,3.11213479 L279.752811,3.11213479 L270.73818,3.11213479 L270.978571,64.140578 L271.339155,125.289393 L279.151833,126.613481 C283.478857,127.335711 287.325098,128.057941 287.926073,128.178313 C288.406853,128.178313 288.767439,119.030065 288.767439,107.835499 Z M63.8824904,110.363304 C71.574974,95.4372156 106.070955,8.40848886 106.070955,4.19548003 C106.070955,3.59362159 101.503543,3.11213479 95.9745701,3.11213479 L85.8781855,3.11213479 L82.753114,11.8992676 C81.0703833,16.5937632 78.9068724,22.732719 77.9453118,25.3808961 L76.3827762,30.1957633 L62.5603447,30.7976218 L48.8581085,31.3994802 L51.2620095,39.2236397 L53.7861057,47.0477989 L61.8391744,47.408914 L69.8922431,47.7700292 L67.7287322,54.0293566 C63.8824904,64.7424364 54.146691,88.5760295 53.3053254,89.1778879 C52.2235701,89.7797463 42.4877705,64.9831797 29.7470947,29.3531616 L20.3718804,3.11213479 L10.3956907,3.11213479 L0.419501139,3.11213479 L2.58301231,9.49183386 C11.8380314,35.9736042 28.7855343,78.5851798 39.6030893,102.418773 L45.2522568,115.0578 L53.4255205,115.0578 L61.5987844,115.0578 L63.8824904,110.363304 Z M223.862108,100.613198 L223.862108,88.5760295 L238.88649,88.5760295 L253.910873,88.5760295 L253.910873,80.1500118 L253.910873,71.7239939 L238.88649,71.7239939 L223.862108,71.7239939 L223.862108,50.0570911 C223.862108,24.658666 224.703474,21.0475156 231.434398,18.8808251 C236.00181,17.3159933 242.251952,17.9178518 249.343462,20.6864004 L253.790678,22.3716041 L255.112824,17.7974801 C258.35809,5.27882503 258.598481,5.88068347 250.7858,3.59362159 C241.650976,0.825072914 227.347766,0.825072914 220.857233,3.59362159 C214.3667,6.36217026 211.361823,9.49183386 207.996361,16.7141349 C205.35207,22.8530907 205.231874,24.0568075 204.87129,66.5480117 L204.390511,110.122561 L209.078118,110.844791 C211.602214,111.326278 214.246505,111.807764 214.84748,112.048508 C215.568651,112.289251 217.852355,112.529994 220.015867,112.529994 L223.862108,112.650366 L223.862108,100.613198 Z M409.323078,87.3723128 C417.015563,84.4833923 423.506096,78.1036932 427.111946,69.9184188 C429.275458,65.3442948 429.996629,61.0109141 430.357213,51.6219229 L430.837995,39.2236397 L403.553716,39.2236397 L376.149245,39.2236397 L376.870413,34.7698873 C379.033925,21.649374 392.856356,15.2696747 411.00581,19.001197 C415.453027,19.9641704 420.020439,21.1678872 421.102193,21.649374 C422.784926,22.3716041 423.385901,21.2882589 424.467655,14.9085598 C426.150387,5.51956854 425.549412,4.91771011 413.770297,2.38990471 C398.986304,-0.739759116 384.202312,1.30655948 373.865538,7.80663042 C357.519011,18.2789669 351.389062,46.9274272 361.124861,67.6313567 C369.538517,85.6871092 390.692844,94.3538703 409.323078,87.3723128 Z M496.945275,87.4926845 C488.291231,90.7427199 464.49261,89.4186314 452.833688,84.9648791 L449.828813,83.7611622 L449.828813,43.4366485 L449.828813,3.11213479 L458.843441,3.11213479 L467.858072,3.11213479 L467.858072,37.2976927 L467.858072,71.6036223 L473.387043,72.446224 C476.391921,72.8073391 481.920892,72.8073391 485.64694,72.3258523 C497.906835,70.7610205 496.945275,70.2795337 498.50781,78.7055516 C499.950151,86.2889676 499.950151,86.4093392 496.945275,87.4926845 Z M562.331385,86.4093392 C555.360071,90.0204896 541.53764,90.6223481 533.123986,87.6130561 C515.455314,81.2333568 506.80127,65.9461533 507.762829,42.3533033 C508.243608,27.9087015 511.488877,19.4826836 519.541944,11.6585243 C526.994038,4.43622331 535.527887,1.54730299 550.191684,1.42693112 C563.172749,1.30655948 576.033621,4.19548003 576.033621,7.20477198 C576.033621,9.37146222 573.749914,21.5290022 573.148939,22.0104889 C573.028744,22.2512322 570.865234,21.649374 568.581527,20.6864004 C561.490019,17.6771085 549.710904,16.9548784 542.25881,19.1215686 C534.926912,21.2882589 531.441254,24.4179227 528.556575,31.0383653 C525.070917,39.5847546 523.748772,39.103268 554.158121,39.4643829 L581.442399,39.8254981 L581.802983,44.3996219 C582.403958,50.8996928 580.000058,65.2239232 577.355767,71.1221355 C574.711476,77.1407196 568.942114,83.0389321 562.331385,86.4093392 Z M385.163873,70.2795337 C381.558021,67.7517284 376.509829,59.566454 376.509829,56.3164185 C376.509829,55.2330735 381.317632,54.8719583 393.938113,54.8719583 L411.366395,54.8719583 L411.366395,57.8812505 C411.366395,62.0942594 408.481715,67.3906134 404.635471,70.3999054 C400.068059,74.011056 390.452456,73.8906841 385.163873,70.2795337 Z M533.96535,68.5943303 C538.172178,72.3258523 539.614519,72.9277108 544.782906,72.9277108 C548.028172,72.9277108 552.114805,72.3258523 553.797534,71.4832506 C557.403387,69.9184188 561.00924,64.2609496 561.970799,58.8442239 L562.812165,54.8719583 L544.662711,54.8719583 C524.950722,54.8719583 526.393063,54.2700999 528.556575,61.7331442 C528.917159,63.1776044 531.441254,66.3072682 533.96535,68.5943303 Z M741.542212,85.9278524 L747.792355,82.7981888 L755.364643,85.9278524 C761.494591,88.4556578 764.980248,89.0575163 773.754486,89.0575163 C786.254771,89.1778879 792.144329,86.890826 798.033886,79.5481534 C804.163835,72.2054807 804.644615,68.8350736 805.245592,34.6495157 L805.846567,3.11213479 L796.110766,3.11213479 L786.374967,3.11213479 L786.374967,32.3624538 C786.374967,64.2609496 785.653796,67.9924719 779.163264,71.4832506 C775.677607,73.2888259 763.297516,72.6869675 758.489714,70.520277 C755.725229,69.1961885 755.605034,68.714702 756.446397,64.140578 C757.047375,61.3720293 757.407959,46.4459407 757.528154,31.1587369 L757.528154,3.11213479 L748.513526,3.11213479 L739.498895,3.11213479 L739.498895,26.9457279 C739.498895,52.9460114 738.296945,63.5387195 734.931483,68.1128435 C732.046801,71.8443655 725.075489,73.5295692 716.181054,72.446224 L709.450133,71.6036223 L709.450133,37.2976927 L709.450133,3.11213479 L700.435502,3.11213479 L691.420874,3.11213479 L691.661265,44.2792502 L692.021849,85.4463659 L696.228677,86.4093392 C705.603891,88.5760295 715.33969,89.5390031 725.075489,89.4186314 C733.609338,89.1778879 736.49402,88.5760295 741.542212,85.9278524 Z M132.513867,62.4553743 C132.513867,48.0107725 133.114842,34.0476572 133.715817,31.5198518 C136.119719,20.8067721 142.369861,17.1956217 156.432683,18.3993386 L164.966532,19.1215686 L164.966532,53.7886131 L164.966532,88.5760295 L173.981161,88.5760295 L182.99579,88.5760295 L182.99579,47.1681708 C182.99579,8.64923214 182.875595,5.63994018 180.952474,5.03808175 C173.259991,2.87139151 162.682826,1.54730299 151.745076,1.54730299 C141.047716,1.42693112 138.163035,1.78804628 133.114842,4.07510815 C125.542554,7.56588714 122.297287,10.6955507 118.33085,18.158595 C115.085584,24.1771792 115.085584,24.1771792 114.724999,56.4367901 L114.364413,88.5760295 L123.379043,88.5760295 L132.513867,88.5760295 L132.513867,62.4553743 Z M618.10189,59.0849672 C618.462474,42.11256 619.30384,28.9920467 620.145206,27.1864714 C623.270277,19.9641704 629.760809,17.3159933 642.140902,18.3993386 L650.554555,19.1215686 L650.554555,53.7886131 L650.554555,88.5760295 L659.569183,88.5760295 L668.583814,88.5760295 L668.583814,47.1681708 C668.583814,8.64923214 668.463619,5.63994018 666.540498,5.03808175 C658.72782,2.87139151 648.270848,1.54730299 637.333099,1.54730299 C626.515543,1.42693112 623.751056,1.78804628 618.342281,4.19548003 C614.736428,5.88068347 610.169016,9.13071894 607.885311,11.8992676 C600.673606,20.3252855 599.832242,24.5382943 599.231267,56.3164185 C598.870681,72.0851091 598.870681,85.8074808 599.35146,86.7704544 C599.952438,88.3352862 601.755363,88.5760295 608.726675,88.3352862 L617.500915,87.974171 L618.10189,59.0849672 Z" id="Shape"></path>
</g>
</g>
</g>
</svg>
</div>
</h1>
<div class="fadeIn">
<p class="tagline">Authentication on Ethereum</p>
<i class="comingsoon">Coming soon to mainnet</i>
</div>
</div>
<div class="fadeIn">
<div class="demo">
<div>
<a
class="button"
rel="noopener noreferrer"
target="_blank"
href="https://uniswap.demo.authereum.org">
Try Demo on Kovan
</a>
<p>Connect with Authereum</p>
</div>
</div>
<div class="subscribe" id="mc_embed_signup">
<div class="card">
<form action="https://gmail.us20.list-manage.com/subscribe/post?u=b06498439e065e59e64e57249&id=1db58233ef" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<p class="lead">Subscribe to get notified of release updates</p>
<div id="mc_embed_signup_scroll">
<div class="mc-field-group">
<label for="mce-EMAIL">Email Address </label>
<input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL" placeholder="alice@example.com">
</div>
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display:none"></div>
<div class="response" id="mce-success-response" style="display:none"></div>
</div>
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_b06498439e065e59e64e57249_1db58233ef" tabindex="-1" value=""></div>
<div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
</div>
</form>
</div>
</div>
<footer class="footer">
<div class="container">
<div class="links">
<a rel="noopener noreferrer" target="_blank" href="https://github.com/authereum">Github</a>
<a rel="noopener noreferrer" target="_blank" href="https://twitter.com/authereum">Twitter</a>
<a rel="noopener noreferrer" target="_blank" href="https://t.me/authereum">Telegram</a>
<a rel="noopener noreferrer" target="_blank" href="https://medium.com/authereum">Medium</a>
<a rel="noopener noreferrer" target="_blank" href="https://s3.amazonaws.com/assets.authereum.org/authereum_press_kit.zip">Press Kit</a>
</div>
<small>© 2019 Authereum</small>
</div>
</footer>
</div>
</body>
</html>