-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdapps.html
765 lines (536 loc) · 33 KB
/
dapps.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
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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
<!DOCTYPE html>
<!--[if IE 9 ]>
<html class="ie ie9 no-js" lang="en">
<![endif]-->
<!--[if gt IE 9 | !IE]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>FLO - Build Blockchain Applications</title>
<meta name="description" content="Build Blockchain Applications">
<meta name="keywords" content="blockchain, metadata, api, sdk">
<meta name="author" content="FLO">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="apple-touch-icon" href="">
<link rel="icon" href="static/assets/img/favicon-v2.png"/>
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@floblockchain">
<meta name="twitter:creator" content="@floblockchain">
<meta name="twitter:title" content="FLO Dapps">
<meta name="twitter:description" content="Dapps using the FLO blockchain">
<meta name="twitter:image" content="https://flo.cash/flo_dapps_flo_greeting.png">
<link rel="stylesheet" href="static/assets/css/style.min.c928158a.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script>
<script type="text/javascript" src="static/assets/js/all.min.js"></script>
<script src="static/assets/js/home.min.js"></script>
<!-- <script src="static/assets/js/pricefeed.js"></script> -->
<!--[if lte IE 9]><!-->
<script src='static/assets/js/html5shiv.min.js'></script>
<!--<![endif]-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-110994620-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-110994620-1');
</script>
<script type="text/javascript">void 0===window.console&&(window.console={log:function(){}})</script>
<!--[if lt IE 9]>
<script src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- <script src="https://luna1.co/assets/dist/hashed/js/global-d83cf47a81.js" data-apikey="95d6c42b13ab2ceaebf24a8baac5afc8"></script>
<style>.async-hide{opacity:0!important}</style>
<script>!function(e,n,t,a,c,s,d,i,m){n.className+=" "+t,s.start=1*new Date,s.end=d=function(){n.className=n.className.replace(RegExp(" ?"+t),"")},(e[a]=e[a]||[]).hide=s,setTimeout(function(){d(),s.end=null},4e3),s.timeout=4e3}(window,document.documentElement,"async-hide","dataLayer",0,{"GTM-TFF9QTR":!0})</script> -->
<link rel="stylesheet" type="text/css" href="static/assets/css/style_dapps.css">
<script src="static/assets/js/carousel.js"></script>
<!-- <script src="static/assets/js/carouseltwo.js"></script> -->
<!-- <script src="https://luna1.co/assets/dist/hashed/js/site-specific/apps-0ed42ae260.js"></script> -->
</head>
<body class="is-site-bg-img is-site-bg-particles is-loaded is-scroll ">
<!-- <div class="site">
<div class="site-loader">
<div class="site-loader-spinner"></div>
</div> -->
<!-- .site-loader -->
<div class="site-canvas" style="background:#f6f8f9;">
<header class="site-header" style="background:#212121">
<nav class="navbar navbar-theme">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse"
aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="navbar-brand-wrap">
<a class="navbar-brand" href="">
<img src="static/assets/img/logo-with-name-v2.png" alt="">
</a>
</div>
</div>
<!-- .navbar-header -->
<div class="collapse navbar-collapse" id="navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">Home</a></li>
<li class="active"><a href="#dapps">Dapps</a></li>
<li><a href="http://network.flo.cash/">Network</a></li>
<li><a href="roadmap.html">Roadmap</a></li>
<li><a href="docs/index.html" class="js-analytic">Docs</a></li>
<!-- <li><a href="docs/index.html" class="js-analytic">Roadmap</a></li> -->
<li><a href="https://medium.com/floblockchain">Blog</a></li>
<li><a href="https://forum.flo.cash" class="js-analytic">Forum</a></li>
<!-- <li><a href="https://medium.com/flo-cash">News</a></li> -->
<li><script type="text/javascript" src="static/assets/js/pricefeed.js"></script><a href="https://coinmarketcap.com/currencies/florincoin/" target="_blank"><div id="buttonOne"><div class="coinmarketcap-currency-widget" style="" data-currency="florincoin" data-base="USD" data-secondary="" data-ticker="true" data-rank="false" data-marketcap="false" data-volume="false" data-stats="USD" data-statsticker="false"></div></li></a>
</ul>
</div>
<!-- .navbar-collapse -->
</div>
</nav>
</header>
<!-- <header class="md-header" data-md-state="shadow" data-md-component="header"> -->
<!-- <nav class="md-header-nav md-grid">
<div class="md-flex">
<div class="md-flex__cell md-flex__cell--shrink">
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<label class="md-icon md-icon--menu md-header-nav__button" for="drawer"></label>
</div>
<div class="md-flex__cell md-flex__cell--stretch">
<div class="md-flex__ellipsis md-header-nav__title" data-md-state="" data-md-component="title">
<span class="md-header-nav__topic" style="width: 839px;">
Dapp Directory
</span>
<span class="md-header-nav__topic" style="width: 839px;">
Home
</span>
</div>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<label class="md-icon md-icon--search md-header-nav__button" for="search"></label>
<div class="md-search" role="dialog" data-md-component="search">
<label class="md-search__overlay" for="search"></label>
<div class="md-search__inner">
<form name="search" class="md-search__form">
<input name="query" class="md-search__input" spellcheck="false" required="" type="text" placeholder="Search" data-md-component="query" autocomplete="off" autocorrect="off" autocapitalize="off">
<label class="md-icon md-search__icon" for="search"></label>
<button class="md-icon md-search__icon" type="reset" data-md-component="reset"></button>
</form>
<div class="md-search__output">
<div class="md-search__scrollwrap" data-md-scrollfix="">
<div class="md-search-result" data-md-component="result">
<div class="md-search-result__meta">
Type to start searching
</div>
<ol class="md-search-result__list"></ol>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<div class="md-header-nav__source">
<a href="https://github.com/valentinjesse/flodocs/" title="Go to repository" class="md-source" data-md-source="github">
<div class="md-source__icon">
<svg viewBox="0 0 24 24" width="24" height="24">
<use xlink:href="#github" width="24" height="24"></use>
</svg>
</div>
<div class="md-source__repository">
valentinjesse/flodocs
</div>
</a>
</div>
</div>
</div>
</nav> -->
<!-- </header> -->
<!-- <script>$(document).ready(function(){var e=$(".mobileNav-toggle");e.click(function(){$("html").toggleClass("-no-scroll"),e.toggleClass("-is-active"),$(".siteHeader").toggleClass("-mobile-nav-active"),$(".mobileNav").toggleClass("-is-active")})})</script> -->
<section class="appsHeader">
<div class="containerapp">
<h1 class="-light">Powered by the FLO Blockchain</h1>
<p class="appsHeader-subhead -large"></p>
<div class="appsCarousel">
<a class="appsCarousel-app" href="https://openindexprotocol.com" target="_blank">
<div class="appsCarousel-app-wrapper">
<div class="row">
<div class="appsCarousel-app-icon">
<img src="static/assets/img/oip-1.png" alt="OIP icon" title="Open Index Protocol">
</div>
<div class="appsCarousel-app-content">
<h3 class="appsCarousel-app-name">Open Index Protocol</h3>
<p class="appsCarousel-app-category">All dapps</p>
<p class="appsCarousel-app-description">Build Dapps with OIP. OIP uses the FLO blockchain for the meta-data index and interoperable transport protocols for file storage/distribution and payments. </p>
<p class="appsCarousel-app-more">Learn more</p>
</div>
</div>
</div>
</a>
<a class="appsCarousel-app" href="https://alexandria.io/browser/" target="_blank">
<div class="appsCarousel-app-wrapper">
<div class="row">
<div class="appsCarousel-app-icon">
<img src="static/assets/img/alexandria-1.png" alt="Alexandria icon" title="Alexandria">
</div>
<div class="appsCarousel-app-content">
<h3 class="appsCarousel-app-name">Alexandria</h3>
<p class="appsCarousel-app-category">Media, New</p>
<p class="appsCarousel-app-description">What Bitcoin did for money, Alexandria aims to do for digital content publishing & distribution, by removing central points of failure and financially incentivizing users around the world.</p>
<p class="appsCarousel-app-more">Learn more</p>
</div>
</div>
</div>
</a>
<a class="appsCarousel-app" href="https://www.tzero.com/" target="_blank">
<div class="appsCarousel-app-wrapper">
<div class="row">
<div class="appsCarousel-app-icon">
<img src="static/assets/img/tzero-1.png" alt="Caltech icon" title="Caltech">
</div>
<div class="appsCarousel-app-content">
<h3 class="appsCarousel-app-name">TZERO</h3>
<p class="appsCarousel-app-category">Markets</p>
<p class="appsCarousel-app-description">tZERO aims to revolutionize the market and fix the inherent inefficiencies of Wall Street so that financial processes are less beholden to traditional, institutional market structures.</p>
<p class="appsCarousel-app-more">Learn more</p>
</div>
</div>
</div>
</a>
</div>
</div>
</section>
<section class="apps">
<div class="containerapp">
<div class="apps-header-wrapper" id="apps-directory-scroll-to">
<h3>Dapp Directory</h3>
</div>
<div class="row">
<div class="col-small-3 col-xlarge-2 col-xlarge-offset-1">
<aside class="apps-sidebar sidebar" id="sticky">
<h5 class="sidebar-title">Filter results</h5>
<ul class="sidebar-list">
<li class="sidebar-item -is-active">
<a data-filter="all" class="sidebar-anchor">All dapps</a>
</li>
<li class="sidebar-item">
<a data-filter="new" class="sidebar-anchor">New</a>
</li>
<li class="sidebar-item">
<a data-filter="social" class="sidebar-anchor">Social</a>
</li>
<li class="sidebar-item">
<a data-filter="media" class="sidebar-anchor">Media</a>
</li>
<li class="sidebar-item">
<a data-filter="science" class="sidebar-anchor">Science</a>
</li>
<li class="sidebar-item">
<a data-filter="markets" class="sidebar-anchor">Markets</a>
</li>
<li class="sidebar-item">
<a data-filter="notary" class="sidebar-anchor">Notary</a>
</li>
<li class="sidebar-item">
<a data-filter="registry" class="sidebar-anchor">Registry</a>
</li>
<li class="sidebar-item">
<a data-filter="certificates" class="sidebar-anchor">Certificates</a>
</li>
<li class="sidebar-item">
<a data-filter="encryption" class="sidebar-anchor">Encryption</a>
</li>
<li class="sidebar-item">
<a data-filter="rating" class="sidebar-anchor">Rating</a>
</li>
<li class="sidebar-item">
<a data-filter="wellness" class="sidebar-anchor">Wellness</a>
</li>
<li class="apps-sidebar-cta sidebar-item">
<a href="https://openindexprotocol.com" title="Learn about our API" class="sidebar-anchor">
Build dapps with OIP
</a>
</li>
</ul>
<select class="sidebar-select">
<option class="sidebar-option" value="new">New</option>
<option class="sidebar-option" value="social">Social</option>
<option class="sidebar-option" value="media">Media</option>
<option class="sidebar-option" value="science">Science</option>
<option class="sidebar-option" value="markets">Markets</option>
<option class="sidebar-option" value="notary">Notary</option>
<option class="sidebar-option" value="registry">Registry</option>
<option class="sidebar-option" value="certificates">Certificates</option>
<option class="sidebar-option" value="encryption">Encryption</option>
<option class="sidebar-option" value="rating">Rating</option>
<option class="sidebar-option" value="wellness">Wellness</option>
</select>
</aside>
</div>
<div class="directory-content col-small-9 col-xlarge-7 col-xlarge-offset-1" id="directory">
<div class="row filterable">
<a class="app" href="https://alexandria.io/browser/" target="_blank" data-app-category="media new all">
<div class="app-wrapper">
<div class="row">
<div class="app-icon">
<img src="static/assets/img/alexandria-1.png" alt="Alexandria icon" title="Alexandria">
</div>
<div class="app-content">
<p class="app-title -large">Alexandria</p>
<p class="app-category">Media, New</p>
<p class="app-description">Alexandria is a fully decentralized, peer-to-peer system allowing content creators to share their work with their fans directly and get paid directly too.</p>
<p class="app-more">Learn more</p>
</div>
</div>
</div>
</a>
<a class="app" href="https://www.tzero.com/" target="_blank" data-app-category="markets all">
<div class="app-wrapper">
<div class="row">
<div class="app-icon">
<img src="static/assets/img/tzero-1.png" alt="tZERO icon" title="tZERO">
</div>
<div class="app-content">
<p class="app-title -large">tZERO</p>
<p class="app-category">Markets, New</p>
<p class="app-description">tZERO has the potential to democratize, expand, and strengthen capital markets through the use of technology, with a focus on Blockchain technology.</p>
<p class="app-more">Learn more</p>
</div>
</div>
</div>
</a>
<a class="app" href="http://www.mediciland.com/" target="_blank" data-app-category="registry all">
<div class="app-wrapper">
<div class="row">
<div class="app-icon">
<img src="static/assets/img/medici-1.png" alt="Medici Land Governance icon" title="Medici Land Governance">
</div>
<div class="app-content">
<p class="app-title -large">Medici Ventures</p>
<p class="app-category">All dapps, Registry</p>
<p class="app-description">Blockchain-Based Property Registry by Medici Ventures
</p>
<p class="app-more">Learn more</p>
</div>
</div>
</div>
</a>
<a class="app" href="https://etdb.caltech.edu/browse" target="_blank" data-app-category="science new all">
<div class="app-wrapper">
<div class="row">
<div class="app-icon">
<img src="static/assets/img/caltech-1.png" alt="Caltech icon" title="Caltech">
</div>
<div class="app-content">
<p class="app-title -large">Caltech ETDB</p>
<p class="app-category">Science, New</p>
<p class="app-description">A public repository stored with OIP and FLO featuring 11293 electron tomography datasets of intact bacterial and archaeal cells, representing 85 species</p>
<p class="app-more">Learn more</p>
</div>
</div>
</div>
</a>
<a class="app" href="http://www.sharedsecret.net/" target="_blank" data-app-category="encryption all">
<div class="app-wrapper">
<div class="row">
<div class="app-icon">
<img src="static/assets/img/sharedsecret-1.png" alt="SharedSecret icon" title="SharedSecret">
</div>
<div class="app-content">
<p class="app-title -large">Shared Secret</p>
<p class="app-category">All dapps, Encryption</p>
<p class="app-description">This dapp let you save encrypted secret in the FLO blockchain and produces a number of keys that must be combined to be able to decrypt the secret.</p>
<p class="app-more">Learn more</p>
</div>
</div>
</div>
</a>
<a class="app" href="http://flotorizer.net/" target="_blank" data-app-category="notary all">
<div class="app-wrapper">
<div class="row">
<div class="app-icon">
<img src="static/assets/img/flotorizer-1.png" alt="Flotorizer icon" title="Flotorizer">
</div>
<div class="app-content">
<p class="app-title -large">Flotorizer</p>
<p class="app-category">All dapps, Notary</p>
<p class="app-description">Flotorizer notarizes any file within the FLO blockchain using the tx-comment field & provides the blockchain info needed to prove that the file exists on the chain. </p>
<p class="app-more">Learn more</p>
</div>
</div>
</div>
</a>
<a class="app" href="https://play.google.com/store/apps/details?id=mobile.flocard" target="_blank" data-app-category="social new all">
<div class="app-wrapper">
<div class="row">
<div class="app-icon">
<img src="static/assets/img/flocard-1.png" alt="FloCard icon" title="FloCard">
</div>
<div class="app-content">
<p class="app-title -large">FLO Card</p>
<p class="app-category">All dapps, Social</p>
<p class="app-description">FLOCard is a one-stop solution securely built on the FLO Blockchain. Create, Store and, Exchange business cards with ease of use and ease of mind. Finally, an indestructible card wallet! </p>
<p class="app-more">Learn more</p>
</div>
</div>
</div>
</a>
<a class="app" href="http://worldmood.io" target="_blank" data-app-category="wellness all">
<div class="app-wrapper">
<div class="row">
<div class="app-icon">
<img src="static/assets/img/worldmood-1.svg" alt="WorldMood icon" title="World Mood">
</div>
<div class="app-content">
<p class="app-title -large">World Mood</p>
<p class="app-category">All dapps, Wellness</p>
<p class="app-description">World Mood aims to record the "mood" of everyone who visits the website and post that information in the FLO blockchain.</p>
<p class="app-more">Learn more</p>
</div>
</div>
</div>
</a>
<a class="app" href="https://github.com/metacoin/aternalove" target="_blank" data-app-category="social new all">
<div class="app-wrapper">
<div class="row">
<div class="app-icon">
<img src="static/assets/img/aternalove-1.png" alt="AternaLove icon" title="Aterna Love">
</div>
<div class="app-content">
<p class="app-title -large">Aterna Love</p>
<p class="app-category">All dapps, Social</p>
<p class="app-description">Aterna Love allows a user to inscribe an eternal message to a loved one onto the distributed memory of every computer on the FLO network. </p>
<p class="app-more">Learn more</p>
</div>
</div>
</div>
</a>
<a class="app" href="https://github.com/akhil2015/Xcertify" target="_blank" data-app-category="certificates all">
<div class="app-wrapper">
<div class="row">
<div class="app-icon">
<img src="static/assets/img/xcertify-1.png" alt="Xcertify icon" title="Xcertify">
</div>
<div class="app-content">
<p class="app-title -large">XCertify</p>
<p class="app-category">All dapps, Certificates</p>
<p class="app-description">Xcertify is decentralized application built on floblockchain, which can be used to publish certificates, college degrees, results, and even contact cards.</p>
<p class="app-more">Learn more</p>
</div>
</div>
</div>
</a>
<a class="app" href="https://github.com/Tarun047/FloRate-Dapp" target="_blank" data-app-category="rating all">
<div class="app-wrapper">
<div class="row">
<div class="app-icon">
<img src="static/assets/img/florate-1.png" alt="florate icon" title="FloRate">
</div>
<div class="app-content">
<p class="app-title -large">FloRate</p>
<p class="app-category">All dapps, Rating</p>
<p class="app-description">Flo Rate is about rating the interns working on a project. "We send the rating publicly via the FLO Blockchain and share the txid with the interns so that they can enter the same id and view their ratings"</p>
<p class="app-more">Learn more</p>
</div>
</div>
</div>
</a>
<!-- <a class="app" href="apps/google-calendar.html" data-app-category="all-apps made-by-asana google all">
<div class="app-wrapper">
<div class="row">
<div class="app-icon">
<img src="https://luna1.co/c2910b.png" alt="Google Calendar icon" title="Google Calendar + Asana Integration">
</div>
<div class="app-content">
<p class="app-title -large">Google Calendar</p>
<p class="app-category">All apps, Made by Asana, Google</p>
<p class="app-description">View Asana tasks on your Google Calendar so you can plan your time, ensure work doesn’t falls through the </p>
<p class="app-more">Learn more</p>
</div>
</div>
</div>
</a> -->
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script>var whitelistedCategories=["new","media","science","markets","social","notary", "registry", "certificates", "encryption", "rating", "wellness","all"]</script>
<!-- <section class="signupCTA -bg-gray hidden-logged-in">
<div class="container">
<div class="signupCTA-text row">
<div class="col-medium-8 col-xlarge-6 col-medium-push-2 col-xlarge-push-3">
<h3>Asana works with the tools you already use</h3>
<div class="signupCTA-form">
<form id="signup-form-" class="signupForm - hidden-ios hidden-android hidden-logged-in" onsubmit="return AsanaHelpers.signupWithEmail(this),!1">
<div class="row -small-center">
<div class="signupForm-email">
<input type="hidden" name="name" value="">
<input id="signup-email-" class="input input--email" tabindex="" placeholder="[email protected]" name="email" type="email">
</div>
<button class="signupForm-submit submit -large" id="signup-submit-" tabindex="" title="Sign Up">
Get Started
</button>
</div>
</form>
<div class="signupForm-mobile-buttons">
<div class="visible-android">
<a href="https://play.google.com/store/apps/details?id=com.asana.app" onclick='AsanaHelpers.trackEvent("download_android")' data-android-button class="signupForm-mobile-button">
<img src="https://luna1.co/Google_Play_EN.svg" alt="Download App Button" title="Download App">
</a>
</div>
<div class="visible-ios">
<a href="https://itunes.apple.com/us/app/asana-mobile/id489969512?mt=8" onclick='AsanaHelpers.trackEvent("download_ios")' data-ios-button class="signupForm-mobile-button">
<img src="https://luna1.co/Apple_App_Store_EN.svg" alt="Download App Button" title="Download App">
</a>
</div>
</div>
<script type="text/javascript">$(function(){$("#signup-submit-").keyup(function(i){13==i.keyCode&&$("#signup-submit-").click()}),$("#signup-email-").on("keydown",function(){$(this).addClass("active"),$("#signup-email--not-valid").fadeOut(500)}),$("#signup-email-").on("keyup",function(){var i=$(this);i.val().length||i.removeClass("active")})})</script>
</div>
</div>
</div>
</div>
</section> -->
</div>
</div>
</div>
<section class="section-community">
<div class="containercom">
<div class="col-sm-3 col-md-2">
<h6>Community</h6>
</div>
<div class="col-md-10 col-sm-9">
<ul>
<li class="fadeIn wow" data-wow-delay="0.2s" style="visibility: visible; animation-delay: 0.2s; animation-name: fadeIn;"> <a href="https://t.me/FLOblockchain" title="Telegram" target="_blank"><img src="static/assets/img/icon-telegram-smaller.svg" alt="Telegram" class="img-responsive"></a> </li>
<li class="fadeIn wow" data-wow-delay="0.1s" style="visibility: visible; animation-delay: 0.1s; animation-name: fadeIn;"> <a href="https://twitter.com/FLOblockchain" title="Twitter" target="_blank"><img src="static/assets/img/social-twitter.svg" alt="Twitter" class="img-responsive"></a> </li>
<li class="fadeIn wow" data-wow-delay="0.1s" style="visibility: visible; animation-delay: 0.1s; animation-name: fadeIn;"> <a href="https://www.facebook.com/floblockchain" title="Facebook" target="_blank"><img src="static/assets/img/social-facebook.svg" alt="Facebook" class="img-responsive"></a> </li>
<li class="fadeIn wow" data-wow-delay="0.1s" style="visibility: visible; animation-delay: 0.1s; animation-name: fadeIn;"> <a href="https://www.reddit.com/r/floblockchain/" title="Reddit" target="_blank"><img src="static/assets/img/social-reddit.svg" alt="Twitter" class="img-responsive"></a> </li>
<li class="fadeIn wow" data-wow-delay="0.3s" style="visibility: visible; animation-delay: 0.3s; animation-name: fadeIn;"> <a href="https://www.youtube.com/channel/UCDAELSdJelys5VkE1FuXo2A" title="Youtube" target="_blank"><img src="static/assets/img/social-youtube.svg" alt="Medium" class="img-responsive"></a> </li>
<li class="fadeIn wow" data-wow-delay="0.3s" style="visibility: visible; animation-delay: 0.3s; animation-name: fadeIn;"> <a href="https://medium.com/flo-cash" title="Medium" target="_blank"><img src="static/assets/img/social-medium.svg" alt="Medium" class="img-responsive"></a> </li>
<li class="fadeIn wow" data-wow-delay="0.4s" style="visibility: visible; animation-delay: 0.4s; animation-name: fadeIn;"> <a href="https://florincoin.slack.com/shared_invite/MTgzNDk0MzYxMjY5LTE0OTQ4MTgzMDEtNGIwYzI4NjkwNw" title="Slack" target="_blank"><img src="static/assets/img/social-slack.png" alt="Slack" class="img-responsive"></a> </li>
<li class="fadeIn wow" data-wow-delay="0.1s" style="visibility: visible; animation-delay: 0.1s; animation-name: fadeIn;"> <a href="https://github.com/floblockchain" title="Github" target="_blank"><img src="static/assets/img/social-github.svg" alt="Github" class="img-responsive"></a> </li>
</ul>
</div>
</div>
</section>
<!-- .site-header -->
<footer class="site-footer block-invert">
<div class="container">
<img class="site-footer-logo img-responsive" src="static/assets/img/logo-v1.png" data-sr="bottom">
<p class="site-footer-copyright">2013-2019 © <a href="#home">FLO</a> | All Rights Reserved.</p>
</div>
</footer>
<!-- .site-footer -->
</div>
</div>
<script type="text/javascript" src="static/assets/js/script.min.8cf8fe3e.js"></script>
<script src='static/assets/js/scripts.js'></script>
</body>
</html>