-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
executable file
·1047 lines (941 loc) · 57.5 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
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
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>WeiFund - Decentralized Fundraising</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--bootstrap css-->
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!--custom css-->
<link href="css/style.css" rel="stylesheet" type="text/css">
<!--video player css css-->
<link href="css/YTPlayer.css" rel="stylesheet" type="text/css">
<!--flex slider css-->
<link href="css/flexslider.css" rel="stylesheet">
<!--google web fonts css-->
<link href='http://fonts.googleapis.com/css?family=Raleway:400,300,500,600,800' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon">
<!-- icons css-->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet">
<!--animated css-->
<link href="css/animate.css" rel="stylesheet">
<!--owl carousel css-->
<link href="css/owl.carousel.css" rel="stylesheet" type="text/css" media="screen">
<link href="css/owl.theme.css" rel="stylesheet" type="text/css" media="screen">
<!-- The HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body data-spy="scroll" data-target="#navigation" data-offset="80">
<section id="home" class="home-video full-screen-dem" data-stellar-background-ratio="0.5">
<div class="parallax-overlay"></div>
<a id="video" class="player" data-property="{videoURL:'http://youtu.be/kvJxX7fk0gI',containment:'#home', showControls:true, autoPlay:true, loop:true, mute:true, startAt:0, opacity:1, quality:'default'}"></a>
<div class="home-content text-center">
<div class="container">
<h1 class=" slide-logo">
<img src="img/WeiFundSmall.png" />
</h1>
<div class="main-flex-slider">
<h1><span style="font-weight:200;"> WeiFund is </span></h1>
<ul class="slides">
<li>
<h1>decentralized </h1>
</li>
<li>
<h1>secure</h1>
</li>
<li>
<h1>open-sourced</h1>
</li>
<li>
<h1>interoperable</h1>
</li>
</ul>
<h1> <span style="font-weight:200;">crowd-funding</span></h1>
</div>
<div class="home-arrow-down text-center">
<p class="scrollto">
<h1 class="slide-btm-text" style="color:white; font-size:16pt">
The WeiFund Bug Bounty is live. Find Bugs, get ether!
</h1>
</p>
</div>
<div class="home-arrow-down text-center">
<p class="scrollto">
<a href="https://github.com/weifund/weifund-contracts/blob/master/BUG-BOUNTY-DETAILS.md" class="btn btn-lg btn-theme-color">
Bug Bounty Program
</a>
<a href="http://weifund.surge.sh/" class="btn btn-lg btn-theme-color">
WeiFund Mainnet Alpha
</a>
</p>
</div>
</div>
</div>
</section>
<section id="navigation">
<div class="navbar navbar-default navbar-static-top sticky" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">
<img src="img/weifundblack.png" style="max-height: 55px; width: auto; margin-top: -18px;" />
</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right scrollto">
<li><a href="#vision">Vision</a></li>
<li><a href="#features">Features</a></li>
<li><a href="http://weifund.readthedocs.io">Documentation</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
<!--/.container -->
</div>
</section>
<!--navigation section end here-->
<section id="vision">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="section-heading text-center">
<h2 class="large section-title"> The WeiFund Vision </h2>
</div>
<h3 class="campaign-head-dark text-center" style="color:grey; padding:0% 5% 3% 5%;font-size:24px;"> Our purpose is to make crowdfunding user-friendly, thoroughly-tested, and interoperable.</h3>
<p class="text-center" style="padding:0% 15% 4% 15%; font-size:16px;">
WeiFund is an open platform for crowdfunding campaigns. You can launch a campaign using one of WeiFund’s contract templates or integrate your own smart contracts. Join our mailing list to learn more about our upcoming platform releases.
</p>
</div>
</div>
</div>
</section>
<section id="bugBounty">
<div class="purchase-now parallax" style="background-color: #337ab7;" data-stellar-background-ratio="0.5" style="background-color:white; padding: 30px 0">
<div class="container">
<div class="row">
<div id="mc_embed_signup" class="col-md-12 text-center" style="height:200">
<form action="https://weifund.us10.list-manage.com/subscribe/post?u=5fd10dccde0a9e8f200ae4e44&id=cae26f5a8a" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll">
<h1 style="color:white; font-size:16pt">Subscribe for updates about our bug bounty</h1>
<br /><br />
<div class="mc-field-group">
<label for="mce-EMAIL"><h4 style="font-size:14px; font-weight:100"> EMAIL     </h4></label>
<input style="padding: 16px;" type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL" placeholder="   [email protected]" size="25" height="150px;">
</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>
<br>
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_5fd10dccde0a9e8f200ae4e44_cae26f5a8a" tabindex="-1" value=""></div>
<div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button btn btn-lg btn-theme-color" style="color:white;"></div>
</div>
</form>
</div>
</div>
</div>
</div><!--services section 1 end-->
</section>
<section id="features" style="background: #F1F1F1;">
<div class="services-section-1" style="padding-top:80px">
<div class="container">
<div class="section-heading text-center">
<h2 class="large section-title">Platform Features</h2>
</div>
<!--section heading-->
</div>
<!--container-->
<div class="container">
<!--div class="row">
<div class="col-md-12">
<div class="margin-btm-40">
<h3 class="campaign-head">KICKSTARTER IN A BOX</h3>
<h6 class="campaign-body">
With YouTube and Vimeo support, type categorization, trusted reviews, contribution limits, and secure money transfer mechanisms, WeiFund can be considered a Kickstarter in a box. Below is an overview of some of WeiFund's critical features. Please note, there will be many more to come!
</h6>
</div>
</div>
</div-->
<div class="row">
<div class="col-md-6 wow animated fadeInLeft" data-wow-delay="0.3s">
<div class="row margin-btm-20">
<div class="col-md-2">
<div class="services-icon">
<i class="fa fa-thumbs-o-up"></i>
</div>
</div>
<div class="col-md-10">
<div class="services-info">
<h3 class="campaign-head">Low Cost</h3>
<!--h6 class="campaign-body">
WeiFund as a platform does not take any cut of the funding
</h6-->
<h6 class="campaign-body">
WeiFund provides a better service for a lower cost compared to other crowdfunding platforms.
</h6>
</div>
</div>
</div>
<div class="row margin-btm-20">
<div class="col-md-2">
<div class="services-icon">
<i class="fa fa-smile-o"></i>
</div>
</div>
<div class="col-md-10">
<div class="services-info">
<h3 class="campaign-head">Ease of use</h3>
<!--h6 class="campaign-body">
Our contribution flow <a href="http://weifund.readthedocs.io/en/latest/getting_started/contributing_to_a_campaign/"> process</a> is extremely user-friendly.
Within a few clicks, users can contribute to their favorite campaigns on WeiFund.
</h6-->
<h6 class="campaign-body">
With a <a href="http://weifund.readthedocs.io/en/latest/getting_started/contributing_to_a_campaign/"> few clicks </a>, users can contribute to campaigns on WeiFund.
</h6>
</div>
</div>
</div>
<!--div class="row margin-btm-20">
<div class="col-md-2">
<div class="services-icon">
<i class="fa fa-ticket"></i>
</div>
</div>
<div class="col-md-10">
<div class="services-info">
<h3 class="campaign-head">Token dispersal</h3>
<h6 class="campaign-body">
Our design model allows other services to build comprehensive third-party services such as token dispersal,
during and after a campaign has ended.
</h6>
</div>
</div>
</div-->
</div>
<div class="col-md-6 wow animated fadeInRight" data-wow-delay="0.6s">
<!--div class="row margin-btm-20">
<div class="col-md-2">
<div class="services-icon">
<i class="fa fa-balance-scale"></i>
</div>
</div>
<div class="col-md-10">
<div class="services-info">
<h3 class="campaign-head">Instant Payout</h3>
<h6 class="campaign-body">
When a campaign has successfully ended, campaigner can retrieve his funds in under a minute.
</h6>
</div>
</div>
</div-->
<div class="row margin-btm-20">
<div class="col-md-2">
<div class="services-icon">
<i class="fa fa-check-circle-o"></i>
</div>
</div>
<div class="col-md-10">
<div class="services-info">
<h3 class="campaign-head">Campaign Templates</h3>
<!--h6 class="campaign-body">
Our click to deploy campaigns allow secure campaigns to be launched with just a few clicks of a button.
</h6-->
<h6 class="campaign-body">
WeiFund provides thoroughly tested <a href="http://weifund.readthedocs.io/en/latest/getting_started/campaigns/"><i>campaign templates</i></a> that anyone can use. Check out our <a href="https://github.com/weifund/weifund-contracts/blob/master/contracts/StandardCampaign.sol">Standard Campaign template</a>.
</h6>
</div>
</div>
</div>
<!--.services row end-->
<div class="row margin-btm-20">
<div class="col-md-2">
<div class="services-icon">
<i class="fa fa-key"></i>
</div>
</div>
<div class="col-md-10">
<div class="services-info">
<h3 class="campaign-head">Security</h3>
<!--h6 class="campaign-body">
WeiFund works with the Consensys Security Team. All of our campaign templates are developed according to the smart contract <a href="https://github.com/ConsenSys/smart-contract-best-practices"> best practices</a>.
</h6-->
<h6 class="campaign-body">
You can read more about our work on smart contract security in our <a href= "http://weifund.readthedocs.io/en/latest/security/overview/"> documentation </a> and on the <a href="https://medium.com/@billgleim/e79198cc4e7f#.nid162jl9">ConsenSys blog</a>.
</h6>
</div>
</div>
</div>
<!--.services row end-->
</div>
</div>
</div>
<br />
<br />
<br />
</div>
</section>
<section>
<div class="purchase-now parallax" style="background-color: #337ab7;" data-stellar-background-ratio="0.5" style="background-color:white; padding: 30px 0">
<div class="container">
<div class="row">
<div id="mc_embed_signup" class="col-md-12 text-center" style="height:200">
<form action="//weifund.us10.list-manage.com/subscribe/post?u=5fd10dccde0a9e8f200ae4e44&id=6c94b8c26f" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll">
<h1 style="color:white; font-size:16pt">Subscribe to our Mailing List</h1>
<br /><br />
<div class="mc-field-group">
<label for="mce-EMAIL"><h4 style="font-size:14px; font-weight:100"> EMAIL     </h4></label>
<input style="padding: 16px;" type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL" placeholder="   [email protected]" size="25" height="150px;">
</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>
<br>
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_5fd10dccde0a9e8f200ae4e44_6c94b8c26f" tabindex="-1" value=""></div>
<div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button btn btn-lg btn-theme-color" style="color:white;"></div>
</div>
</form>
</div>
</div>
</div>
</div><!--services section 1 end-->
</section>
<!--about section end here-->
<!--section services start here-->
<section id="features" style="background: #F1F1F1;">
<!--services section 1 end-->
<!-- Begin MailChimp Signup Form -->
<!--<div id="mc_embed_signup">
<form action="//weifund.us10.list-manage.com/subscribe/post?u=5fd10dccde0a9e8f200ae4e44&id=6c94b8c26f" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll">
<h2>Subscribe to our mailing list</h2>
<div class="indicates-required"><span class="asterisk">*</span> indicates required</div>
<div class="mc-field-group">
<label for="mce-EMAIL">Email Address <span class="asterisk">*</span>
</label>
<input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL">
</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;"><input type="text" name="b_5fd10dccde0a9e8f200ae4e44_6c94b8c26f" tabindex="-1" value=""></div>
<div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
</div>
</form>
</div>-->
<!--End mc_embed_signup-->
<!-- <div class="services-section-2 parallax" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row">
<div id="mc_embed_signup"
class="col-md-12 text-center">
<h1>Get News & Updates</h1>
<form action="//weifund.us10.list-manage.com/subscribe/post?u=5fd10dccde0a9e8f200ae4e44&id=6c94b8c26f" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div class="row">
<div class="col-sm-4 col-sm-offset-4">
<div class="input-group">
<label class="sr-only" for="subscribe-email">Email address</label>
<input type="email" value="" name="EMAIL" class="required email form-control" placeholder="Email" id="mce-EMAIL">
<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;">
<input type="text" name="b_5fd10dccde0a9e8f200ae4e44_6c94b8c26f" tabindex="-1" value=""></div>
<span class="input-group-btn">
<input type="submit" value="OK" name="subscribe" id="mc-embedded-subscribe" class="btn btn-lg btn-theme-color">
</span>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div><!--services section 1 end-->
<!-- <div class="purchase-now parallax" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row">
<div class="col-sm-8">
<h1 class="wow animated fadeInLeft" data-wow-delay="0.3s">Turn <strong>contributions</strong> into <storng>tokens on the fly</storng></h1>
</div>
<div class="col-sm-4">
<a href="https://medium.com/@weifund" class="btn btn-lg btn-theme-color wow animated bounceIn" data-wow-delay="0.6s"> Checkout Our Blog</a>
</div>
</div>
</div>
</div> -->
</section>
<!--section services end here-->
<!--our work section start here-->
<!--section id="work" class="padding-80">
<div class="work-section-1">
<div class="container">
<div class="section-heading text-center">
<h4 class="small section-title">
<span>What It Looks Like</span>
</h4>
<h2 class="large section-title">Screens</h2>
</div>
</div>
<div class="container">
<div class="row">
<div class="portfolio-box iso-call work-col-4">
<div class="project-post photography branding">
<a href="img/screen1.jpg" target="_blank">
<div class="image-wrapper">
<img src="img/screen1.jpg" class="img-responsive" alt="work-1">
<div class="image-overlay">
<p>
View Detail
</p>
</div>
</div>
<div class="work-sesc">
<p>
Landing Page
</p>
</div>
</div>
</div>
</div>
<br /><br /><br /><br /> <br />
</div>
</div>
<!-- Problems section -->
<!--section id="problem" class="padding-80">
<div class="about-section">
<div class="container">
<div class="section-heading text-center">
<h2 class="large section-title">
Problems with Crowdfunding Today
</h2>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6">
<div class="col-md-2">
<div class="services-icon">
<i class="fa fa-usd"></i>
</div>
</div>
<div class="about-box-text">
<h4 class="campaign-head">Costly</h4>
<h6 class="campaign-body">
Platforms take a cut of up to 10% from each campaign.
</h6>
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="col-md-2">
<div class="services-icon">
<i class="fa fa-stop"></i>
</div>
</div>
<div class="about-box-text">
<h4 class="campaign-head">Slow</h4>
<h6 class="campaign-body">
It could take up to several weeks before the project or the beneficiary receives anything.
</h6>
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="col-md-2">
<div class="services-icon">
<i class="fa fa-exclamation-circle"></i>
</div>
</div>
<div class="about-box-text">
<h4 class="campaign-head">Insecure</h4>
<h6 class="campaign-body">
Blockchain-based crowdfunds are susceptible to hacks with unproven contracts.
</h6>
</div>
</div>
</div>
<!--about services row end-->
<!--<div class="about-section-more">
<div class="row">
<div class="col-md-6 col-sm-6">
<div class="about-more-info wow animated fadeInUp" data-wow-delay="0.3s">
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</p>
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="skills-wrapper wow animated bounceIn" data-wow-delay="0.6s">
<h3 class="heading-progress">Web Design <span class="pull-right">88%</span></h3>
<div class="progress">
<div class="progress-bar" style="width: 88%" aria-valuemax="100" aria-valuemin="0" aria-valuenow="88" role="progressbar">
</div>
</div>
<h3 class="heading-progress">Web Development <span class="pull-right">78%</span></h3>
<div class="progress">
<div class="progress-bar" style="width: 78%" aria-valuemax="100" aria-valuemin="0" aria-valuenow="78" role="progressbar">
</div>
</div>
<h3 class="heading-progress">Marketing <span class="pull-right">82%</span></h3>
<div class="progress">
<div class="progress-bar" style="width: 82%" aria-valuemax="100" aria-valuemin="0" aria-valuenow="82" role="progressbar">
</div>
</div>
</div>
>>>>>>> origin/master
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="col-md-2">
<div class="services-icon">
<i class="fa fa-exclamation-circle" aria-hidden="true"></i>
</div>
</div>
<div class="about-box-text">
<h4>Insecure</h4>
<h6>
Blockchain-based crowdfunds are susceptible to hacks with unproven contracts.
<h6>
</div>
<div style="display: block; height: 100px;"></div>
</div>
</div>
<div class="container padding-80">
<div class="section-heading text-center">
<h2 class="large section-title">
Solution
</h2>
</div>
<div id="solution">
<h6 class="campaign-body">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur ultrices sem ut lacus auctor scelerisque. In elementum massa erat. Pellentesque ullamcorper sed nulla in congue. Fusce nisi nulla, lacinia in volutpat vitae, feugiat ac sapien. Maecenas sodales purus finibus, sagittis enim vitae, viverra leo. Vivamus mauris nulla, posuere at sagittis quis, scelerisque in nibh. Integer sit amet augue sit amet elit scelerisque vehicula laoreet sed ipsum. Fusce posuere fringilla nunc, id cursus nisi egestas sed. Curabitur tristique malesuada vehicula. Suspendisse maximus dictum nulla ac commodo. Nunc sodales ligula placerat, tristique quam eget, molestie nisi. Nulla posuere, magna nec porta eleifend, dolor lacus finibus dolor, finibus viverra nunc ligula ac diam. Etiam faucibus semper dui eu sodales.
</h6>
</div>
</div>
</div>
</section-->
<!--work section-->
<!--section id="team">
<div class="purchase-now parallax" id="team" data-stellar-background-ratio="0.5" style="background-color:white;">
<div class="text-center">
<h1 class="wow animated fadeInLeft" data-wow-delay="0.3s"><strong>GET STARTED BY READING OUR DOCUMENTATION</strong> </h1>
<div class="col-sm-12" style="padding-top: 5%;">
<a href="http://weifund.readthedocs.io/" class="btn btn-lg btn-theme-color wow animated bounceIn" target="_blank" data-wow-delay="0.6s" style="font-size:20px;">
Read the WeiFund Docs   
<i class="fa fa-file-text-o"></i>
</a>
</div>
</div>
</div>
</section-->
<!--work section-->
<!--testimonials-->
<section id="team">
<div class="testi parallax" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1 text-center">
<div class="col-md-3 col-sm-3">
<img src="img/icons/nick.jpg" alt="">
<!--colored social-->
<h2 class="large bio-name">Nick Dodson</h2>
<h4> Founder and Lead Developer </h4>
<ul class="list-inline social-colored">
<li><a href="https://www.linkedin.com/in/iamnickdodson"><i class="fa fa-linkedin" ></i></a></li>
<li><a href="https://twitter.com/iamnickdodson"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://github.com/SilentCicero"><i class="fa fa-github-square" ></i></a></li>
</ul>
<br><br>
</div>
<div class="col-md-3 col-sm-3">
<img src="img/icons/russell.jpg" alt="">
<!--colored social-->
<h2 class="large bio-name">Russell Verbeeten</h2>
<h4> Project and Strategy Lead </h4>
<ul class="list-inline social-colored">
<li><a href="https://ca.linkedin.com/in/russellverbeeten"><i class="fa fa-linkedin" ></i></a></li>
<li><a href="https://twitter.com/rverbee"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://github.com/rverbee"><i class="fa fa-github-square" ></i></a></li>
</ul>
</div>
<div class="col-md-3 col-sm-3">
<img src="img/icons/henry.jpg" alt="">
<h2 class="large bio-name">Henry Chan</h2>
<h4> Product Manager </h4>
<ul class="list-inline social-colored">
<li><a href="https://ca.linkedin.com/in/henry-chan-85b6b227"><i class="fa fa-linkedin" ></i></a></li>
</ul>
</div>
<div class="col-md-3 col-sm-3">
<img src="img/icons/niran.png" alt="">
<h2 class="large bio-name">Niran Babalola</h2>
<h4> Product Developer </h4>
<ul class="list-inline social-colored">
<li><a href="https://ca.linkedin.com/in/niranbabalola"><i class="fa fa-linkedin"></i></a></li>
<li><a href="https://github.com/niran"><i class="fa fa-github-square"></i></a></li>
</ul>
</div>
<!--testimonials item like paragraph-->
</div>
</div>
<br></br>
<div class="row">
<div class="col-md-10 col-md-offset-1 text-center">
<div class="col-md-3 col-sm-3">
<img src="img/icons/bill.jpg" alt="">
<h2 class="large bio-name">Bill Gleim</h2>
<h4> Security and Systems Research </h4>
<ul class="list-inline social-colored">
<li><a href="https://www.linkedin.com/in/williamgleim"><i class="fa fa-linkedin" ></i></a></li>
<li><a href="https://twitter.com/billgleim"><i class="fa fa-twitter" ></i></a></li>
</ul>
</div>
<div class="col-md-3 col-sm-3">
<img src="img/icons/mark.png" alt="">
<h2 class="large bio-name">Mark Beylin</h2>
<h4> Intern </h4>
<ul class="list-inline social-colored">
<li><a href="https://www.linkedin.com/in/mbeylin"><i class="fa fa-linkedin"></i></a></li>
<li><a href="https://github.com/mbeylin"><i class="fa fa-github-square"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!--testimonials-->
<!--<div class="work-section-2">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center margin-btm-40">
<div class="section-heading text-center">
<h4 class="small section-title"><span>Super creative heroes</span></h4>
<h2 class="large section-title">Our team</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="person">
<img src="img/team/nick.jpg" class="img-responsive" alt="">
<div class="person-desc">
<h4>Nick Dodson</h4>
<em>Founder, Lead Developer</em>
<p>
Crypto-developer specializing in open-source decentralized applications.
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person">
<img src="img/team/joris.jpg" class="img-responsive" alt="">
<div class="person-desc">
<h4>Joris Bontje</h4>
<em>Technical Advisor</em>
<p>
Decentralized Autonomous Technologist. Big Data Hacker & <a href="https://github.com/jorisbontje/">Software Engineer</a>. Co-host at <a href="http://ethercasts.com">EtherCasts</a>. <a href="http://ethereum-buildboard.meteor.com/">Captain Obvious</a>.
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person">
<img src="img/team/massi.jpg" class="img-responsive" alt="">
<div class="person-desc">
<h4>Massimiliano Terzi</h4>
<em>Software Engineer</em>
<p>
Financial analyst with a passion for programming and technology. Bitcoin adopter, early Ethereum enthusiast. WeiLend founder</a>
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="person">
<img src="img/team/aaron.jpg" class="img-responsive" alt="">
<div class="person-desc">
<h4>Aaron Davis</h4>
<em>Technical Advisor</em>
<p>
Code composer. Creator of MetaMask Ethereum browser.
</p>
</div>
</div>
</div>
</div>
</div>
</div><!--team section end-->
<!--fun facts-->
<!--<div class=" fun-facts parallax" id="numbers" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row">
<div class="col-md-3 margin-btm-20">
<div class="fact-inner">
<h2 class="counter">34565</h2>
<h4>Projects Complete</h4>
</div>
</div>
<div class="col-md-3 margin-btm-20">
<div class="fact-inner">
<h2 class="counter">1599</h2>
<h4>Happy Customers</h4>
</div>
</div>
<div class="col-md-3 margin-btm-20">
<div class="fact-inner">
<h2 class="counter">99999</h2>
<h4>Songs Listen</h4>
</div>
</div>
<div class="col-md-3 margin-btm-20">
<div class="fact-inner">
<h2 class="counter">1255</h2>
<h4>Cups of coffee</h4>
</div>
</div>
</div>
</div>
</div>
<!--fun facts-->
<!--#work-section-->
<!-- <section id="alpha" class="padding-80" style="background: #F1F1F1;">
<div class="services-section-1">
<div class="container">
<div class="section-heading text-center">
<h4 class="small section-title"><span>Visual Demos and Alpha's</span></h4>
<h2 class="large section-title">How It Feels</h2>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="margin-btm-40">
<h4>Visual Demo</h4>
<p>
This is a visual demo of the early WeiFund alpha UI that you can run in any browser. It should give you a taste of the WeiFund design and interface.
<br /><br />
<label>Website Demo</label>
<br />
<a href="http://weifund-basic.surge.sh" target="_blank">http://weifund-basic.surge.sh</a>
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="margin-btm-40">
<h4>The Alpha</h4>
<p>
The alpha is currently only available for developers. You can access it here:
<br /><br />
<label>Alpha Repository</label>
<br /> <a href="http://github.com/weifund/weifund-dapp-basic" target="_blank">github.com/weifund/weifund-dapp-basic</a>
</p>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!--our work section end-->
<section id="contact" class="padding-80">
<div class="contact-sec-1">
<div class="container">
<!--section headings-->
<div class="section-heading col-md-6">
<h2 class="large section-title">Contact Us</h2>
</div>
<div class="col-md-12">
<h4>Contact info</h4>
<div class="contact-info wow animated fadeInRight" data-wow-delay=".6s">
<p><i class="fa fa-envelope"></i> <a href="#">[email protected]</a></p>
<hr style="background: #aaa; border-color: #aaa;">
<h4>Elsewhere</h4>
<ul class="list-inline social-colored">
<li><a href="http://facebook.com/weifund"><i class="fa fa-facebook icon-fb" data-toggle="tooltip" title="" data-original-title="Facebook" data-placement="top"></i></a></li>
<li><a href="http://twitter.com/weifund"><i class="fa fa-twitter icon-twit" data-toggle="tooltip" title="" data-original-title="Twitter" data-placement="top"></i></a></li>
<li><a href="http://linkedin.com/company/weifund"><i class="fa fa-linkedin icon-in" data-toggle="tooltip" title="" data-original-title="Linkedin" data-placement="top"></i></a></li>
</ul>
<!--colored social-->
</div>
</div>
<!--div class="section-heading text-center col-md-6">
<h2 class="large section-title">Resources</h2>
</div-->
</div>
<!--.container-->
<div class="container">
<div class="row">
<!--<div class="col-md-8">
<h4>Get in touch</h4>
<form name="sentMessage" id="contactForm" method="post" novalidate>
<div class="row">
<div class="col-md-6">
<div class="row control-group">
<div class="form-group col-xs-12 controls">
<label>Name<span>*</span></label>
<input type="text" class="form-control" placeholder="Name" id="name" required data-validation-required-message="Please enter your name.">
<p class="help-block"></p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="row control-group">
<div class="form-group col-xs-12 controls">
<label>Email Address<span>*</span></label>
<input type="email" class="form-control" placeholder="Email Address" id="email" required data-validation-required-message="Please enter your email address.">
<p class="help-block"></p>
</div>
</div>
</div>
</div>
<div class="row control-group">
<div class="form-group col-xs-12 controls">
<label>Message<span>*</span></label>
<textarea rows="5" class="form-control" placeholder="Message" id="message" required data-validation-required-message="Please enter a message."></textarea>
<p class="help-block"></p>
</div>
</div>
<br>
<div id="success"></div>
<div class="row">
<div class="form-group col-xs-12">
<button type="submit" class="btn btn-theme-color btn-lg">Send Message</button>
</div>
</div>
</form>
</div>
<!--contact form-->
<!--div class="col-md-6">
<ulf>
<li><a href="https://medium.com/@billgleim/e79198cc4e7f#.oliu6nq5i">Shaping Crowdfund Rollout Readiness at WeiFund</a></li>
</ul>
</div-->
</div>
</div>
</div>
<!--Contact-sec-1 end-->
</section>
<!--contact section end-->
<!--<div id="map-canvas" style="width:100%; height: 350px;"></div>
<div class="contact-sec-2">
<div class="container text-center">
<div class="row">
<div class="col-sm-4">
<div class="contact-col wow animated flipInY" data-wow-delay=".3s">
<i class="fa fa-phone"></i>
<p>+91 0141 123456789</p>
</div>
</div>
<div class="col-sm-4">
<div class="contact-col wow animated flipInY" data-wow-delay=".3s">
<i class="fa fa-envelope"></i>
<p>[email protected]</p>
</div>
</div>
<div class="col-sm-4">
<div class="contact-col wow animated flipInY" data-wow-delay=".3s">
<i class="fa fa-home"></i>
<p>124,munnawali jaipur<br>302012, india</p>
</div>
</div>
</div>
</div>
</div><!--Contact-sec-1 end-->
<section id="footer" class="padding-80">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6 copyright">
<span>©2015 WeiFund. All rights reserved</span>
</div>
<div class="col-md-6 col-sm-6 footer-nav">
<ul class="list-inline">
<li><a href="#home">Home</a></li>
<li><a href="http://twitter.com/WeiFund">Twitter</a></li>
</ul>
</div>
</div>
</div>
</section>
<!--footer end-->
<!--back to top-->
<a href="#" class="scrollToTop"><i class="fa fa-angle-up"></i></a>
<!--back to top end-->
<!--script files-->
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/moderniz.min.js" type="text/javascript"></script>
<script src="js/jquery-migrate.min.js" type="text/javascript"></script>
<script src="js/jquery.easing.1.3.min.js" type="text/javascript"></script>
<script src="bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
<script src="js/jquery.flexslider-min.js" type="text/javascript"></script>
<script src="js/wow.min.js" type="text/javascript"></script>
<script src="js/jquery.sticky.js" type="text/javascript"></script>
<script src="js/bootstrap-hover-dropdown.min.js" type="text/javascript"></script>
<script src="js/jquery.stellar.min.js" type="text/javascript"></script>
<script src="js/owl.carousel.min.js" type="text/javascript"></script>
<script src="js/jquery.mb.YTPlayer.min.js" type="text/javascript"></script>
<script src="js/waypoints.min.js"></script>
<script src="js/easypiechart.js"></script>
<script src="js/jquery.isotope.min.js" type="text/javascript"></script>
<!--image loads plugin -->
<script src="js/jquery.imagesloaded.min.js" type="text/javascript"></script>
<script src="js/jquery.counterup.min.js" type="text/javascript"></script>
<script src="js/jquery.countdown.js" type="text/javascript"></script>
<script src="js/contact_me.js" type="text/javascript"></script>
<script src="js/jqBootstrapValidation.js" type="text/javascript"></script>
<script src="js/custom.js" type="text/javascript"></script>
<!--revolution slider plugins-->
<script src="rs-plugin/js/jquery.themepunch.tools.min.js" type="text/javascript"></script>