-
Notifications
You must be signed in to change notification settings - Fork 0
/
fund.html
582 lines (552 loc) · 28.1 KB
/
fund.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Help Fund The Fight | Peeps - decentralize everything.</title>
<meta name="title" content="Support Our Development | Peeps - decentralize everything.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="At Peeps, our mission to create an Internet that enables freedom depends on the many patriots who contribute to our development efforts. Learn how you can help fund our fight against big tech.">
<meta name="keywords" content="">
<!-- Favicon -->
<link rel="shortcut icon" href="assets/img/logo/peepfab.png">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nunito:400,400i,600,600i,700,700i%7cPermanent+Marker"
rel="stylesheet">
<link href="assets/css/theme.css" rel="stylesheet" type="text/css" media="all">
<link href="assets/css/custom.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-08BK2XMZTB"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-08BK2XMZTB');
</script>
</head>
<body>
<!--------------------------------- Header Block Start --------------------------->
<nav class="navbar navbar-expand-lg navbar-light bg-white" style="padding:5px 0;">
<div class="container">
<a class="navbar-brand" href="index.html">
<img alt="Insight" src="assets/img/logo/peepsLogo.png">
</a>
<div class="d-flex order-lg-3 ml-lg-5">
<a href="https://signup.peepsid.com" class="btn btn-primary">Create PeepsID</a>
<button class="navbar-toggler ml-2" type="button" data-toggle="collapse" data-target=".navMenu" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div class="collapse navbar-collapse justify-content-between navMenu order-lg-2">
<div class="dropdown">
<button class="btn dropdown-toggle btn-light btn-sm" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<img src="assets/img/flag-us.svg" alt="United States" class="btn-image">
<span>United States</span>
</button>
<!-- <div class="dropdown-menu">
<a class="dropdown-item" href="#">Asia</a>
<a class="dropdown-item" href="#">Australia</a>
<a class="dropdown-item" href="#">Europe</a>
<a class="dropdown-item" href="#">India</a>
<a class="dropdown-item" href="#">United States</a>
</div> -->
</div>
<div class="d-lg-flex align-items-center">
<div class="d-flex align-items-center justify-content-between my-1 my-lg-0">
<ul class="navbar-nav d-flex flex-row">
<li class="nav-item">
<a href="https://docs.arisen.network" class="nav-link pr-2">Docs</a>
</li>
<li class="nav-item rix-price-box">
<a href="https://wallet.bitshares.org/#/asset/ARISEN" target="_blank" class="nav-link pr-2">RIX Value: <span id="rix-price" class="rsn-price badge badge-success"></span>
</a>
</li>
</ul>
</div>
<form onsubmit="myFunction()">
<div class="input-group input-group-round increase-width">
<div class="input-group-prepend">
<span class="input-group-text" id="input-group-search-2">
<i class="material-icons">search</i>
</span>
</div>
<input type="search" id="searchid" class="form-control" placeholder="Search PeepsIDs and more..." aria-label="Search">
</div>
</form>
</div>
</div>
</div>
</nav>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark py-0 sticky-top">
<div class="container">
<div class="collapse navbar-collapse navMenu">
<ul class="navbar-nav nav-tabs border-0">
<li class="nav-item">
<a class="nav-link h5" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link h5" href="peeros.html">PeerOS</a>
</li>
<li class="nav-item">
<a class="nav-link h5" href="peepsid.html">PeepsID</a>
</li>
<li class="nav-item">
<a class="nav-link h5" href="dbrowser.html">dBrowser</a>
</li>
<li class="dropdown">
<a class="nav-link h5 dropdown-toggle" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" id="pages-dropdown">dApps</a>
<div class="dropdown-menu dropdown-menu-wide p-0 o-hidden dropdown-menu-right" aria-labelledby="pages-dropdown">
<div class="list-group list-group-flush">
<a href="dsocial.html " class="list-group-item list-group-item-action d-flex justify-content-between align-items-center py-3">
<div class="d-flex align-items-center">
<div class="icon-rounded mr-3">
<img src="assets/img/logo/dsocial.png" alt="dsocial">
</div>
<div>
<span class="h6 d-block mb-0">dSocial</span>
</div>
</div>
<i class="material-icons">keyboard_arrow_right</i>
</a>
<a href="dwallet.html " class="list-group-item list-group-item-action d-flex justify-content-between align-items-center py-3">
<div class="d-flex align-items-center">
<div class="icon-rounded mr-3">
<img src="assets/img/logo/dwallet.png" alt="dwallet">
</div>
<div>
<span class="h6 d-block mb-0">dWallet</span>
</div>
</div>
<i class="material-icons">keyboard_arrow_right</i>
</a>
<a href="dsearch.html " class="list-group-item list-group-item-action d-flex justify-content-between align-items-center py-3">
<div class="d-flex align-items-center">
<div class="icon-rounded mr-3">
<img src="assets/img/logo/dseek.png" alt="dsearch">
</div>
<div>
<span class="h6 d-block mb-0">dSearch</span>
</div>
</div>
<i class="material-icons">keyboard_arrow_right</i>
</a>
<a href="dnames.html " class="list-group-item list-group-item-action d-flex justify-content-between align-items-center py-3">
<div class="d-flex align-items-center">
<div class="icon-rounded mr-3">
<img src="assets/img/logo/dnames.png" alt="dname">
</div>
<div>
<span class="h6 d-block mb-0">dNames</span>
</div>
</div>
<i class="material-icons">keyboard_arrow_right</i>
</a>
</div>
<!-- <div class="p-3 d-flex border-top">
<img src="assets/img/avatar-female-1.jpg" alt="Avatar" class="avatar mr-3">
<p class="mb-0">
“Insight's diverse array of pages make building complete business websites quicker than ever.”
</p>
</div> -->
</div>
</li>
<li class="dropdown">
<a class="nav-link h5 dropdown-toggle" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" id="components-dropdown">Developers</a>
<div class="dropdown-menu dropdown-menu-wide p-0 o-hidden dropdown-menu-right" aria-labelledby="components-dropdown">
<div class="list-group list-group-flush">
<a href="https://dwebx.org " class="list-group-item list-group-item-action d-flex justify-content-between align-items-center py-3">
<div class="d-flex align-items-center">
<div class="icon-rounded mr-3">
<img src="assets/img/logo/dweb-logo.png" alt="dweb">
</div>
<div>
<span class="h6 d-block mb-0">dWeb</span>
</div>
</div>
<i class="material-icons">keyboard_arrow_right</i>
</a>
<a href="https://arisen.network " class="list-group-item list-group-item-action d-flex justify-content-between align-items-center py-3">
<div class="d-flex align-items-center">
<div class="icon-rounded mr-3">
<img src="assets/img/logo/arisen.png" alt="arisen">
</div>
<div>
<span class="h6 d-block mb-0">Arisen Blockchain </span>
</div>
</div>
<i class="material-icons">keyboard_arrow_right</i>
</a>
<a href="https://docs.arisen.network " class="list-group-item list-group-item-action d-flex justify-content-between align-items-center py-3">
<div class="d-flex align-items-center">
<div class="icon-rounded mr-3" style="border: 1px solid #000;">
<span>DD</span>
</div>
<div>
<span class="h6 d-block mb-0">Developer Docs </span>
</div>
</div>
<i class="material-icons">keyboard_arrow_right</i>
</a>
<a href="https://explorer.arisen.network " class="list-group-item list-group-item-action d-flex justify-content-between align-items-center py-3">
<div class="d-flex align-items-center">
<div class="icon-rounded mr-3" style="border: 1px solid #000;">
<span>EA</span>
</div>
<div>
<span class="h6 d-block mb-0">Explore Arisen</span>
</div>
</div>
<i class="material-icons">keyboard_arrow_right</i>
</a>
</div>
<!-- <div class="px-3 py-2 border-top">
<ul class="list-unstyled m-0 d-flex justify-content-between">
<li class="my-1"><a href="http://insight.mediumra.re/documentation/index.html" class="d-flex align-items-center"><i class="material-icons mr-1">book</i> View Documentation</a></li>
<li class="my-1"><a href="http://insight.mediumra.re/documentation/changelog.html" class="d-flex align-items-center">View Changelog <span class="ml-1 badge badge-success">1.0.1</span></a></li>
</ul>
</div> -->
</div>
</li>
<li class="dropdown">
<a class="nav-link h5 dropdown-toggle" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" id="components-dropdown">About Peeps</a>
<div class="dropdown-menu dropdown-menu-wide p-0 o-hidden dropdown-menu-right" aria-labelledby="components-dropdown">
<div class="list-group list-group-flush">
<a href="our-mission.html" class="list-group-item list-group-item-action d-flex justify-content-between align-items-center py-3">
<div class="d-flex align-items-center">
<div class="icon-rounded mr-3" style="border: 1px solid #000;">
<span>OM</span>
</div>
<div>
<span class="h6 d-block mb-0">Our Mission</span>
</div>
</div>
<i class="material-icons">keyboard_arrow_right</i>
</a>
<a href="our-team.html" class="list-group-item list-group-item-action d-flex justify-content-between align-items-center py-3">
<div class="d-flex align-items-center">
<div class="icon-rounded mr-3" style="border: 1px solid #000;">
<span>OT</span>
</div>
<div>
<span class="h6 d-block mb-0">Our Team</span>
</div>
</div>
<i class="material-icons">keyboard_arrow_right</i>
</a>
<a href="peeps-story.html" class="list-group-item list-group-item-action d-flex justify-content-between align-items-center py-3">
<div class="d-flex align-items-center">
<div class="icon-rounded mr-3" style="border: 1px solid #000;">
<span>PS</span>
</div>
<div>
<span class="h6 d-block mb-0">The Peeps Story</span>
</div>
</div>
<i class="material-icons">keyboard_arrow_right</i>
</a>
<a href="about-peeps.html" class="list-group-item list-group-item-action d-flex justify-content-between align-items-center py-3">
<div class="d-flex align-items-center">
<div class="icon-rounded mr-3" style="border: 1px solid #000;">
<span>AP</span>
</div>
<div>
<span class="h6 d-block mb-0">About Peeps</span>
</div>
</div>
<i class="material-icons">keyboard_arrow_right</i>
</a>
</div>
</div>
</li>
<li class="nav-item">
<a class="nav-link h5" href="fund.html">Support Us</a>
</li>
<li class="nav-item">
<a class="nav-link h5" href="https://peepsology.medium.com/">Blog</a>
</li>
</ul>
</div>
</div>
</nav>
<!--------------------------------- Header Block End --------------------------->
<!-------------------------CTA Block Start------------------------>
<section class="controls-inside p-0 controls-light bg-dark" >
<div class="height-70 carousel-cell py-3 py-md-4 height-40 overlay-dark">
<img class="bg-image opacity-50" src="assets/img/The Grand Canyon.jpg" alt="The Grand Canyon">
<div class="container">
<div class="row">
<div class="col-12 col-md-6">
<h1 class="display-4 text-white">The fight is on for our online freedom.</h1>
<p class="lead text-light">The I AM Freedom movement is about creating an Iternet that enables freedom and it depends on the many patriots like you who continue to join and contribute to this monumental fight.</p>
<a href="#member-levels" class="btn btn-primary btn-lg">View Member Levels</a>
</div>
</div>
</div>
</div>
</section>
<section class="pt-md-3 bg-dark">
<div class="container">
<div class="row">
<div class="col-lg-4 d-lg-flex">
<div class="card shadow-lg">
<div class="card-body py-4">
<span class="d-block h1 display-4">32</span>
<p>The number of developers, visionaries and advisors contributing to the I AM Freedom mission at the Peeps Institute.</p>
<a href="https://peepsx.com">Learn more about pees</a>
</div>
</div>
</div>
<div class="col-lg-4 d-lg-flex">
<div class="card shadow-lg">
<div class="card-body py-4">
<span class="d-block h1 display-4">$400,000</span>
<p>The amount of money contributed towards domains, servers, developers, legal fees and more over the past 36 months.</p>
<a href="donate.html">Donate now</a>
</div>
</div>
</div>
<div class="col-lg-4 d-lg-flex">
<div class="card shadow-lg">
<div class="card-body py-4">
<span class="d-block h1 display-4">$20/mo.</span>
<p>The cost to become a "Patriot" level member of the I AM Freedom club, and a monthly supporter of our fight against big tech.</p>
<a href="#member-levels">View member levels</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!------------------------- CTA Block End------------------------>
<!------------------------- Block A------------------------>
<section class="bg-white" id="member-levels">
<!-- <img src="#" alt="Image" class="bg-i mage"> -->
<div class="container height-md-30">
<div class="row">
<div class="col-md-8 col-lg-7 col-xl-6">
<nav aria-label="breadcrumb">
<!-- <ol class="breadcrumb p-0 bg-transparent">
<li class="breadcrumb-item">
<a href="index.html">Overview</a>
</li>
<li class="breadcrumb-item">
<a href="pages-inner.html">Inner Pages</a>
</li>
<li class="breadcrumb-item active" aria-current="page">
Member Levels
</li>
</ol> -->
</nav>
<h1 class="display-4">
Member Levels
</h1>
<p class="lead mb-0">
To become a member of the I AM Freedom club, you have to choose from one of the three support levels below.
</p>
</div>
</div>
</div>
</section>
<section class="pt-md-0 mt-minus-3">
<div class="container">
<div class="row">
<div class="col-md-4 d-flex">
<div class="card flex-fill text-center shadow">
<div class="card-body py-4">
<div class="mb-3">
<span class="h4 d-block">Leader</span>
<div class="d-flex justify-content-center align-items-center">
<span class="h5 mb-0">$</span>
<span class="h1 display-3 mb-0">5</span>
</div>
<span class="text-muted">Per Month.</span>
</div>
<ul class="list-unstyled lead mb-3">
<li class="mt-1">Regular Insider Updates</li>
<li class="mt-1">I AM Freedom Sticker</li>
<li class="mt-1">Preview Apps Before Release</li>
</ul>
<a href="https://peepsx.com/join.html" class="btn btn-primary">Join Now</a>
</div>
<div class="card-footer">
<span class="text-small">* Cancel at anytime.</span>
</div>
</div>
</div>
<div class="col-md-4 d-flex">
<div class="card flex-fill text-center shadow-lg">
<span class="badge badge-md badge-success position-absolute"><i class="material-icons">star</i> Best Value</span>
<div class="card-body py-4">
<div class="mb-3">
<span class="h4 d-block">Hero</span>
<div class="d-flex justify-content-center align-items-center">
<span class="h5 mb-0">$</span>
<span class="h1 display-3 mb-0">10</span>
</div>
<span class="text-muted">Per Month.</span>
</div>
<ul class="list-unstyled lead mb-3">
<li class="mt-1">Includes Leader Plus</li>
<li class="mt-1">Daily Insider Updates</li>
</ul>
<a href="https://peepsx.com/join.html" class="btn btn-primary">Join Now</a>
</div>
<div class="card-footer">
<span class="text-small">* Cancel at anyime.</span>
</div>
</div>
</div>
<div class="col-md-4 d-flex">
<div class="card flex-fill text-center shadow">
<div class="card-body py-4">
<div class="mb-3">
<span class="h4 d-block">Patriot</span>
<div class="d-flex justify-content-center align-items-center">
<span class="h5 mb-0">$</span>
<span class="h1 display-3 mb-0">20</span>
</div>
<span class="text-muted">Per Month.</span>
</div>
<ul class="list-unstyled lead mb-3">
<li class="mt-1">Includes Hero Plus</li>
<li class="mt-1">"I AM Freedom" T-Shirt</li>
</ul>
<a href="https://peepsx.com/join.html" class="btn btn-primary">Join Now</a>
</div>
<div class="card-footer">
<span class="text-small">* Cancel at anytime.</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!------------------------- Block A End------------------------>
<!------------------------- Block B------------------------>
<section class="height-70 bg-gradient">
<img src="assets/img/american-family.jpg" alt="Image" class="bg-image opacity-60">
<div class="container">
<div class="row text-center">
<div class="col">
<h1 class="display-2 font-alt-1 text-white">Beyond Freedom.</h1>
<span class="lead d-block mb-3 text-white">Peer-to-peer innovations like the dWeb, prove that eachy goes far beyond just online freedom. You can help support our continued fight for faith, family, justice nad life in America by graciously donating to our growing efforts across America by clicking below.</span>
<a href="https://arisen.church/donate.html" class="btn btn-lg btn-primary">Donate now</a>
</div>
</div>
</div>
</section>
<!------------------------- Block B End------------------------>
<!--------------------------- Footer Block Start-------------------->
<footer class="spacer-y-3 bg-white">
<div class="container">
<div class="row">
<div class="col-6 col-md-5 mb-3 mb-md-0">
<img src="assets/img/logo/peepsLogo.png" alt="peeps-logo" class="footer-logo">
<!-- <p class="trademark">decentralize everything. ™</p> -->
<hr/>
<p>"My bias was always to build decentralization into the net. That way it would be hard for one group to gain control. I didn't trust large central organizations. It was just in my nature to distrust them."<br />
<b>- Bob Taylor</b><br />Visionary of ARPANET & Godfather Of The Internet</p>
<hr/>
<p class="powered-by">
Powered by <a href="https://peepsx.com" target="_blank"><img src="assets/img/logo/arisen.png" alt="peeps-logo"></a> and Made in <img src="assets/img/flag-us.svg" alt="United States" class="btn-image">
</p>
<p><a href="legal.html" class="privacy-pol">Privacy Policy*</a></p>
<p>© 2018-2021 Arisen Ministries and The Peeps Institute. All rights reserved.</p>
<ul class="list-social-links">
<li class="text-gray"><a href="https://www.facebook.com/peepsology"><i class="socicon-facebook"></i></a></li>
<li class="text-gray"><a href="https://twitter.com/peepsology"><i class="socicon-twitter"></i></a></li>
<li class="text-gray"><a href="https://www.youtube.com/channel/UCoknUFNMUF9ciA_WGmm8pxQ"><i class="socicon-youtube"></i></a></li>
<li class="text-gray"><a href="https://medium.com/@peepsology"><i class="socicon-medium"></i></a></li>
<li class="text-gray"><a href="https://t.me/peepsology"><i class="socicon-telegram"></i></a></li>
<!-- <li class="text-gray"><a href="#"><i class="socicon-linkedin"></i></a></li>
<li class="text-gray"><a href="#"><i class="socicon-instagram"></i></a></li> -->
</ul>
</div>
<div class="col-6 col-md-2 mb-3 mb-md-0">
<ul class="list-unstyled">
<li class="py-0 py-md-1"><a href="dwallet.html" class="text-gray">dWallet</a></li>
<li class="py-0 py-md-1"><a href="dsocial.html" class="text-gray">dSocial</a></li>
<li class="py-0 py-md-1"><a href="dnames.html" class="text-gray">dNames</a></li>
<li class="py-0 py-md-1"><a href="dsearch.html" class="text-gray">dSearch</a></li>
</ul>
<hr/>
<ul class="list-unstyled">
<li class="py-0 py-md-1"><a href="peepsid.html" class="text-gray">PeepsID</a></li>
<li class="py-0 py-md-1"><a href="peeros.html" class="text-gray">PeerOS</a></li>
<li class="py-0 py-md-1"><a href="dbrowser.html" class="text-gray">dBrowser</a></li>
</ul>
</div>
<div class="col-12 col-md-2 mb-3 mb-md-0">
<ul class="list-unstyled">
<li class="py-0 py-md-1"><a href="our-mission.html" class="text-gray">Our Mission </a></li>
<li class="py-0 py-md-1"><a href="our-team.html" class="text-gray">Our Team </a></li>
<li class="py-0 py-md-1"><a href="peeps-story.html" class="text-gray">The Peeps Story </a></li>
<li class="py-0 py-md-1"><a href="fund.html" class="text-gray">Support Peeps </a></li>
</ul>
<hr/>
<ul class="list-unstyled">
<li class="py-0 py-md-1"><a href="https://arisen.network" class="text-gray">Developers </a></li>
</ul>
</div>
<div class="col-12 col-md-3">
<ul class="list-unstyled">
<li class="py-0 py-md-1"><a href="https://dwebx.org" class="text-gray">dWeb </a></li>
<li class="py-0 py-md-1"><a href="https://dwebx.org/compare-webs.html" class="text-gray">Compare Webs </a></li>
<li class="py-0 py-md-1"><a href="https://dwebx.org/how-it-works.html" class="text-gray">How The dWeb Works </a></li>
<li class="py-0 py-md-1"><a href="#" class="text-gray">Arisen Java SDK </a></li>
<li class="py-0 py-md-1"><a href="https://signup.peepsid.com" class="text-gray">Create a PeepsID </a></li>
</ul>
<hr/>
<ul class="list-unstyled">
<li class="py-0 py-md-1"><a href="https://www.npmjs.com/~peepslabs" class="text-gray">Peeps NPM </a></li>
<li class="py-0 py-md-1"><a href="https://github.com/peepsx" class="text-gray">Peeps Git Repository </a></li>
</ul>
</div>
</div>
<!-- <div class="row mt-3 mt-md-4">
<div class="col">
<span class="text-small text-gray opacity-50">© 2018 Medium Rare ABN: 88 88888 88888 and Australian Credit License No 88888888</span>
</div>
</div> -->
</div>
</footer>
<!--------------------------- Footer Block End-------------------->
<script type="text/javascript" src="assets/js/jquery.min.js"></script>
<script type="text/javascript" src="assets/js/popper.min.js"></script>
<script type="text/javascript" src="assets/js/prism.js"></script>
<script type="text/javascript" src="assets/js/smooth-scroll.polyfills.js"></script>
<script type="text/javascript" src="assets/js/scrollMonitor.js"></script>
<script type="text/javascript" src="assets/js/bootstrap.js"></script>
<script type="text/javascript" src="assets/js/clipboard.js"></script>
<script type="text/javascript" src="assets/js/jquery.countdown.min.js"></script>
<script type="text/javascript" src="assets/js/flickity.pkgd.min.js"></script>
<script type="text/javascript" src="assets/js/isotope.pkgd.min.js"></script>
<script type="text/javascript" src="assets/js/jquery.smartWizard.min.js"></script>
<script type="text/javascript" src="assets/js/jquery.fancybox.min.js"></script>
<script type="text/javascript" src="assets/js/zoom.min.js"></script>
<script type="text/javascript" src="assets/js/theme.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.19.1/axios.min.js"></script>
<script type="text/javascript" src="assets/js/custom/custom.js"></script>
<script>
window.onload = function () {
axios.get('https://payments.peepsx.com/users/amount')
.then(function (response) {
var value = (parseFloat(response.data.total)/100000)*100
document.getElementById('myBar').innerHTML = value + "%"
var elem = document.getElementById("myBar");
elem.style.width = value + "%";
})
.catch(function (error) {
console.log(error)
});
}
// Rix price
axios.get('https://nv6khovry9.execute-api.us-east-1.amazonaws.com/dev/rsn_price_from_bts')
.then(function (response) {
document.getElementById('rix-price').innerHTML = ` $ ${parseFloat(response.data.data.USD.price).toFixed(4)}`;
})
.catch(function (error) {
console.log(error)
});
</script>
</body>
</html>