-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
772 lines (720 loc) · 41.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Vaccify - A decentralized open-source vaccination passporting solution</title>
<!-- favicon CSS -->
<link rel="icon" type="image/png" sizes="32x32" href="favicon.png">
<!-- google fonts -->
<link href="https://fonts.googleapis.com/css?family=Noto+Serif:400,400i" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Alice" rel="stylesheet">
<!-- custom fonts -->
<link href="fonts/aileron.css" rel="stylesheet">
<!-- Plugins CSS -->
<link rel="stylesheet" href="css/plugins.min.css">
<!-- Style CSS -->
<link rel="stylesheet" href="css/app.css">
<!-- Your CSS -->
<link rel="stylesheet" href="css/custom.css">
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/emailjs-com@2.3.2/dist/email.min.js"></script>
<script type="text/javascript">
(function () {
emailjs.init("user_iFyXnmP0apHoGqIvi67cp");
})();
</script>
<script type="text/javascript">
window.onload = function () {
document.getElementById('contact-form').addEventListener('submit', function (event) {
event.preventDefault();
emailjs.sendForm('gmail-service', 'contact_form', this)
alert("Your response have been submitted, Thank you!");
});
}
</script>
</head>
<body class="" data-spy="scroll" data-target="#navbar-nav">
<!-- =========== Preloader Start ============ -->
<div class="preloader-main">
<div class="preloader-wapper">
<svg class="preloader" xmlns="http://www.w3.org/2000/svg" version="1.1" width="600" height="200">
<defs>
<filter id="goo" x="-40%" y="-40%" height="200%" width="400%">
<feGaussianBlur in="SourceGraphic" stdDeviation="10" result="blur" />
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 19 -8"
result="goo" />
</filter>
</defs>
<g filter="url(#goo)">
<circle class="dot bg-fill-primary " cx="50" cy="50" r="25" />
<circle class="dot" cx="50" cy="50" r="25" fill="#4c83ff" />
</g>
</svg>
<div>
<div class="loader-section section-left"></div>
<div class="loader-section section-right"></div>
</div>
</div>
</div>
<!-- =========== Preloader End ============ -->
<div class="main">
<!-- =========== Start of Navigation (main menu) ============ -->
<header class="navbar navbar-sticky navbar-expand-lg navbar-dark">
<div class="container position-relative">
<a class="navbar-brand mr-70" href="#home">
<img class="navbar-brand__regular" style="max-width: 60%;" src="img/brand-logo-white.png"
alt="brand-logo">
<img class="navbar-brand__sticky" style="max-width: 60%;" src="img/brand-logo-color.png"
alt="sticky brand-logo">
</a>
<!-- End of brand logo -->
<button class="navbar-toggler d-lg-none" type="button" data-toggle="navbarToggler"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- end of Nav toggler -->
<div class="navbar-inner">
<!-- Nav close button inside off-canvas/ mobile menu -->
<button class="navbar-toggler d-lg-none" type="button" data-toggle="navbarToggler"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- end of Nav Toggoler -->
<nav>
<ul class="navbar-nav" id="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#features">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#how-it-works">How it works</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#demo">Demo</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#faqs">FAQs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#partners">Partners</a>
</li>
<li class="nav-item">
<a class="nav-link" target="_blank" href="hall-of-contributors">Hall of
Contributors</a>
</li>
</ul>
<!-- end of nav menu items -->
</nav>
</div>
<div class="flex-row ml-lg-auto d-md-flex mr-70 mr-lg-0 d-none d-sm-inline-block">
<a href="https://vaccify.s3.ap-south-1.amazonaws.com/Vaccify+-+Concept+Paper.pdf" target="_blank"
class="btn btn--outline btn--sm btn-3d-hover btn-splash-hover">
<span class="btn__text">Concept Paper</span>
</a>
</div>
<!-- end of nav cta button -->
</div>
<!-- end of container -->
</header>
<!-- =========== End of Navigation (main menu) ============ -->
<!-- =========== Start of Hero ============ -->
<section class="space--lg hero hero--dark bg-color-primary" id="home">
<div class="background-holder z-index-1">
<img src="img/hero-10.png" alt="hero-image" class="background-image-holder">
</div>
<!-- end background image -->
<div class="container">
<div class="row">
<div class="col-12 col-lg-10 col-xl-8 mx-auto">
<div class="d-lg-flex align-items-lg-center position-relative text-center mb-100">
<div class="hero-content hero-content--center mx-auto">
<h1 class="hero__title">An open-standard<br> Digital travel pass
for COVID</h1>
<p class="lead hero__description">A solution that enables governance over<br> issuance
and verification of digital PCR-Test and Vaccination
certificates<br> via global identity standards.</p>
<div
class="button-group align-items-center flex-column flex-sm-row justify-content-sm-center">
<!-- <a href="https://forms.gle/bVZZqc7Wxn6nZttM9" target="_blank"
class="mr-sm-3 mb-10 mb-sm-0 box-shadow-2 rounded-md btn-3d-hover transition-default">
<img src="img/app-store-md.png" class="rounded-md" alt="app-store">
</a>
<a href="https://forms.gle/bVZZqc7Wxn6nZttM9" target="_blank"
class="box-shadow-2 rounded-md btn-3d-hover transition-default">
<img src="img/google-play-md.png" class="rounded-md" alt="google-play">
</a> -->
<a target="_bank" href="https://youtu.be/-HgoUnlzSOg"
class="btn btn--outline btn--sm btn-3d-hover btn-splash-hover">
<span style="color:white;" class="btn__text">See the demo</span>
</a>
</div>
</br>
<a href="https://vaccify.s3.ap-south-1.amazonaws.com/TrustNetPK-Vaccine-Passporting-Whitepaper-2020.pdf"
target="_blank" class="btn btn--bg-primary btn--sm btn-3d-hover btn-splash-hover">
<span style="color:white;" class="btn__text">Read Whitepaper</span>
</a>
</div>
<!-- end of content -->
</div>
</div>
<!-- end of col -->
</div>
<!-- end of row -->
</div>
<!-- end of container -->
<div class="hero__shape">
<img src="img/hero-10-wave.svg" alt="hero bg" class="svg">
</div>
<!-- end of hero svg shape -->
</section>
<!-- =========== End of Hero ============ -->
<!-- =========== Start of Media ============ -->
<section class="bg-color-white position-relative" style="padding-top: 3rem;" id="media">
<!-- <div class="background-holder background-holder--top">
<img src="img/pricing-bg.svg" alt="pattern" class="background-image-holder">
</div> -->
<div class="container">
<div class="col-12 col-lg-9 mx-auto">
<div class="section-title reveal text-center mb-80 mb-sm-50">
<h4 class="mb-3">Featured on</h4>
</div>
<!-- end of section title -->
</div>
<div class="row mt-100">
<div
class="col-12 mx-auto d-flex flex-column flex-md-row justify-content-between text-center reveal">
<span class="mb-30 mb-md-0"><a target="_blank"
href="https://pk.mashable.com/tech/4064/vaccify-a-pakistani-initiative-for-issuing-digital-vaccine-certificates-for-covid-19">
<img src="img/mash.png" alt="Mashable">
</a></span>
<span class="mb-30 mb-md-0"><a target="_blank"
href="https://propakistani.pk/2020/06/26/this-pakistani-company-is-working-on-a-digital-vaccine-passport-for-covid-19/"><img
src="img/propk.png" alt="ProPK"></a></span>
<span class="mb-30 mb-md-0"><a target="_blank"
href="https://www.techjuice.pk/trustnet-pakistan-is-developing-a-digital-health-passport-for-covid-19/"><img
src="img/juice.png" alt="TechJuice"></a></span>
<span class="mb-30 mb-md-0"><a target="_blank" href="https://youtu.be/MKqb2aSrHbc"><img
src="img/koh.png" alt="Kohinoor"></a></span>
</div>
<!-- end of clients logo col -->
</div>
<!-- end of clients logo row -->
</div>
<!-- end of container -->
</section>
<!-- =========== End of Media ============ -->
<!-- =========== Start of Features ============ -->
<section class="space-top" id="features">
<div class="container">
<div class="row">
<div class="col-12 col-md-10 col-lg-7 col-xl-6 mx-auto">
<div class="section-title reveal text-center mb-80">
<!-- <p class="mb-10 text-uppercase font-w-700">Why use Vaccify?</p> -->
<h3>A simple, proven way to govern PCR-Test and Vaccination certificates.</h3>
</div>
<!-- end of section title -->
</div>
</div>
<!-- end of row -->
<div class="row border-bottom-light space-bottom reveal">
<div class="col-12 col-md-6 col-lg-4 mb-30 mb-lg-0">
<div class="features">
<div class="d-flex mb-20">
<span class="mr-20">
<img src="img/family.png" alt="family">
</span>
<h5>Issuer</h5>
</div>
<p>Issue reliable
blockchain-based PCR and vaccination certificates to people who have been vaccinated or
tested.
Enabling
your institution to take a leap in digital trust, providing consumers a secure
service.
</p>
</div>
</div>
<!-- end of col -->
<div class="col-12 col-md-6 col-lg-4 mb-30 mb-lg-0">
<div class="features">
<div class="d-flex mb-20">
<span class="mr-20">
<img src="img/b-meeting.png" alt="communication">
</span>
<h5>Holder</h5>
</div>
<p>
Recieve and store proof of PCR-Test or vaccination certificates in your
mobile wallet app.
Allowing you to digital prove it along with more control over managing your medical
certificates
and it's data.
</p>
</div>
</div>
<!-- end of col -->
<div class="col-12 col-md-6 col-lg-4 mb-30 mb-lg-0">
<div class="features">
<div class="d-flex mb-20">
<span class="mr-20">
<img src="img/filter-organization.png" alt="management">
</span>
<h5>Verifier</h5>
</div>
<p>Request and verify PCR-Test vaccination certificates anywhere in the
world. Verifier institutions
can simple engage in either face-2-face or online verification of consumers
vaccination status.
</p>
</div>
</div>
<!-- end of col -->
</div>
<!-- end of row -->
</div>
<!-- end of container -->
</section>
<!-- =========== End of Features ============ -->
<!-- =========== Start of Features Tab Slider ============ -->
<section class="bg-color-primary features-custom-container">
<div class="overlap overlap--lg overlap--gray z-index1 d-none d-xl-block"></div>
<div class="content-wrapper">
<div class="container">
<div class="row align-items-center align-items-xl-start">
<div class="col-12 col-md-6 col-xl-6 mb-md-40 mb-xl-0 mt-xl-5">
<p class="lead mb-10 font-w-700 text-uppercase">Everything on mobile</p>
<h3 class="mb-20">Use your smartphone to prove you tested negative or are vaccinated.</h3>
<p class="mb-30 mb-lg-0">Vaccify is an open-source decentralized digtial wallet developed
for the purpose of
storing and sharing PCR-Test & vaccination certificates especially SARS-CoV-2. While
preserving
privacy and giving you back control of your data.</p>
</div>
<!-- end of col -->
<div class="col-12 col-md-5 offset-md-1 offset-xl-0 col-xl-6 z-index2 reveal">
<picture class="device-image"><img src="img/mobile-1.png" alt="mobile"></picture>
</div>
<!-- end of col -->
</div>
<!-- end of row -->
</div>
<!-- end of container -->
</div>
<!-- end of container -->
<div class="features features--slider-2 pt-100 mt-xl-5">
<div class="container">
<div class="row">
<div class="col-12">
<div class="slider slider-tabs mb-20">
<div class="slide"><button class="slider-tab">Digital Identity</button></div>
<div class="slide"><button class="slider-tab">Encryption</button></div>
<div class="slide"><button class="slider-tab">Control</button></div>
</div>
<!-- end of slider tab -->
<div class="slider slider-contents">
<div class="slide">
<p>Vaccify creates a blockchain based digital identity also known as
Self-Soverign-Identity. Securing your identity
using biometrics or a passcode. This decentralized identity allows you to prove
certain facts about yourself digitally over internet replacing any
paper-based credentials.</p>
</div>
<!-- end of single item -->
<div class="slide">
<p>High-level of enryption is used to make sure that your data is protected beyond
any doubts. You
control your private keys making you and only you the sole owner of your data.
Not even TrustNet Pakistan can see what you store in your digital wallets.
</p>
</div>
<!-- end of single item -->
<div class="slide">
<p>Issuers of digital certificate governs the issuing and revocation. Whereas the
verifier can only validate your
certificate is legit. No information is ever shared without your consent, your
biometric validation is mendatory before allowing any decryption process or
information sending process.</p>
</div>
<!-- end of single item -->
</div>
<!-- end of slider content -->
</div>
<!-- end of col -->
</div>
<!-- end of row -->
</div>
<!-- end of container -->
</div>
<!-- end of features -->
</section>
<!-- =========== End of Features Tab Slider ============ -->
<!-- =========== Start of Process ============ -->
<section class="space-top bg-color-grey" id="how-it-works">
<div class="container">
<div class="row">
<div class="col-12 col-lg-9 mx-auto">
<div class="section-title reveal text-center mb-80 mb-sm-50">
<h3 class="mb-3 font-w-400">How vaccify works for you?</h3>
<p class="lead font-w-400">In the post-COVID world a formal, provable digital trust is
required in society to enable people along with public and private institutes to govern
SARS-CoV-2 credentails.</p>
</div>
<!-- end of section title -->
</div>
</div>
<!-- end of row -->
<div class="working-process reveal">
<div class="row space-bottom">
<div class="col-12 col-md-4">
<div class="working-process-block text-center">
<span class="mb-30 icon-dotted position-relative">
<i class="icon icon-pin-2"></i>
</span>
<h4 class="font-size-21 mb-10">
Issue Certificates
</h4>
<p>Quick touch less QR issues digital passporting certifcates.</p>
</div>
</div>
<!-- end of col -->
<div class="col-12 col-md-4">
<div class="working-process-block text-center">
<span class="mb-30 icon-dotted position-relative">
<i class="icon icon-layout-11"></i>
</span>
<h4 class="font-size-21 mb-10">
Prove PCR-Test or Vaccination
</h4>
<p>Control your digital health records and prove f2f or over the internet safely.</p>
</div>
</div>
<!-- end of col -->
<div class="col-12 col-md-4">
<div class="working-process-block text-center">
<span class="mb-30 icon-dotted position-relative">
<i class="icon icon-spaceship"></i>
</span>
<h4 class="font-size-21 mb-10">
Verify Immunity
</h4>
<p>Validate immunity of people, enabling your organization to run smoothly.</p>
</div>
</div>
<!-- end of col -->
</div>
<!-- end of row -->
</div>
<!-- end of working process -->
</div>
<!-- end of container -->
</section>
<!-- =========== End of Process ============ -->
<!-- =========== Start of Features-2 ============ -->
<section class="space border-bottom-light">
<div class="container">
<div class="row">
<div class="col-12 col-md-10 col-lg-7 col-xl-6 mx-auto">
<div class="section-title reveal text-center mb-80">
<p class="mb-10 text-uppercase font-w-700">More than a software</p>
<h3>Understand high-level PCR-Test / vaccination certificate issuance and verification.</h3>
</div>
<!-- end of section title -->
</div>
<!-- end of col -->
</div>
<!-- end of row -->
<div class="row d-lg-flex flex-column-reverse flex-lg-row align-items-center ">
<!-- enf of col -->
<div class="col-12 col-lg-6 col-xl-6 mb-50 mb-lg-0 text-center reveal">
<picture><img class="rounded-default" src="img/issuer-flow.png" alt="team-image"></picture>
</div>
<div class="col-12 col-lg-6 col-xl-6 mb-50 mb-lg-0 text-center reveal">
<picture><img class="rounded-default" src="img/verifier-flow.png" alt="team-image"></picture>
</div>
<!-- end of image -->
</div>
<!-- end of row -->
</div>
<!-- end of container -->
</section>
<!-- =========== End of Features-2 ============ -->
<!-- =========== Start of Content Block ============ -->
<section class="space-bottom switchable d-md-flex align-items-md-center border-bottom-light pt-100" id="demo">
<div class="col-md-6 pl-md-0 mb-40 mb-md-0 text-center text-md-left">
<picture class="switchable__image">
<a target="_bank" href="https://youtu.be/-HgoUnlzSOg"><img src="img/new-admin-dashboard-2.png"
alt="dashboard-image"></a>
</picture>
</div>
<!-- end of image -->
<div class="switchable__text">
<div class="container">
<div class="row">
<div class="col-12 text-center text-md-left ml-md-auto reveal">
<h3 class="mb-4">Watch demo video or build it and run it yourself <br> its open-source and
amazing.
</h3>
<p class="mb-5">Our demo comprises of a <b>Issuer Institute</b>
<i>(Hospital/Lab)</i>
and a
<b>
Verifier Organization</b> <i>(Airline/Other)</i>. You can run the issuer demo app to
issue
yourself a dummy
SARS-CoV-2
Certifcate and get it verified at verifer app while mimicking booking plane ticktes or
flight boarding.
</p>
<span>
<!-- <a target="_blank" href="https://vaccify.pk/demo"
class="btn btn--bg-primary btn-3d-hover btn-splash-hover">Try
Demo</a> -->
<a target="_blank" href="https://github.com/TrustNetPK"
class="btn btn--bg-primary btn-3d-hover btn-splash-hover">
Go To Github</a>
</span>
</div>
</div>
</div>
</div>
<!-- end of content -->
</section>
<!-- =========== End of Content Block ============ -->
<!-- =========== Start of FAQ ============ -->
<section class="space" id="faqs">
<div class="container">
<div class="row">
<div class="col-12 col-lg-6 mx-auto">
<div class="section-title reveal text-center mb-80 mb-sm-50 reveal">
<h3 class="mb-3 font-w-400">Frequently Asked Questions</h3>
<p class="lead font-w-400">In this section you will find answers to the most common
questions about Vaccify. </p>
</div>
<!-- end of section title -->
</div>
<!-- end of col -->
</div>
<!-- end of row -->
<div class="row justify-content-between">
<div class="col-12 col-xl-11 mx-auto">
<div class="row justify-content-between reveal">
<div class="col-12 col-md-6 mb-40 px-lg-4">
<h5 class="mb-2">What is a vaccify certificate?</h5>
<p>A vaccify certificate represents a digital proof of your vaccination or PCR-test.
Especially SARS-CoV-2 credential is used to prove your status
of COVID-19 test or vaccination.</p>
</div>
<!-- end of single item -->
<div class="col-12 col-md-6 mb-40 px-lg-4">
<h5 class="mb-2">How does vaccify work?</h5>
<p>A medical institute can issue you a digital certificate, which is
kept in your Vaccify digital wallet app. This certificate in your app can be
later verified by anyone you allow.<b> No need of any integration.</b></p>
</div>
<!-- end of single item -->
</div>
<!-- end of single col -->
<div class="row justify-content-between reveal">
<div class="col-12 col-md-6 mb-40 px-lg-4">
<h5 class="mb-2">Can it help post-COVID society?</h5>
<p>Post-Pandamic world will be radically different. The people
would need to prove
their immunity so they can travel without risk of being infected and infecting
others. We are
anticipating a dire need in the future for COVID health credentials.</p>
</div>
<!-- end of single item -->
<div class="col-12 col-md-6 mb-40 px-lg-4">
<h5 class="mb-2">Who control it and what?</h5>
<p>You fully control your data and the private key of your decentralized
identity, and no
one except you has
access to it. Issuers only hold authority over issuing certificates and
revoking them if needed. Verifiers can only verify if someone tested negative or is
vaccinated.</p>
</div>
<!-- end of single item -->
</div>
<!-- end of single col -->
<div class="row justify-content-between reveal">
<div class="col-12 col-md-6 mb-40 px-lg-4">
<h5 class="mb-2">How trustworthy is it?</h5>
<p>Vaccify takes advantage of the immutability and trustworthiness that blockchain has
to offer. Certificates issued on the blockchain are reliable and immutable, and can
be revoked if needed.</p>
</div>
<!-- end of single item -->
<div class="col-12 col-md-6 mb-40 px-lg-4">
<h5 class="mb-2">How secure is it?</h5>
<p>All your data and it's communication channels are encrypted end-to-end. You and only
you
control you digital identity, and your information is not shared with anyone unless
you approve.</p>
</div>
<!-- end of single item -->
</div>
<!-- end of single col -->
</div>
</div>
<!-- end of row -->
<div class="row">
<div class="col-12 text-md-center mt-20 reveal">
<span>Still have a question? Reach out to us: <a href="mailto:support@trust.net.pk"
class="color-primary"> support@trust.net.pk</a></span>
</div>
</div>
</div>
</section>
<!-- =========== End of FAQ ============ -->
<!-- =========== Start of Partner Orgs ============ -->
<section class="bg-color-primary space position-relative" id="technologies">
<div class="background-holder background-holder--top">
<img src="img/testimonial-bg.svg" alt="pattern" class="background-image-holder">
</div>
<div class="container">
<div class="col-12 col-lg-9 mx-auto">
<div class="section-title reveal text-center mb-80 mb-sm-50">
<h3 class="mb-3">Powered By</h3>
<p class="lead">Hyperledger open-source blockchain based solutions are used to build
vaccify.<br /> British Columbia's VON Network test ledger is used to run the demos.</p>
</div>
<!-- end of section title -->
</div>
<div class="row mt-100">
<div
class="col-12 mx-auto d-flex flex-column flex-md-row justify-content-between text-center reveal">
<span class="mb-30 mb-md-0"><a href="https://www.hyperledger.org/use/hyperledger-indy"> <img
src="img/indy-logo.png" alt="client"></a></span>
<span class="mb-30 mb-md-0"><a href="https://www.hyperledger.org/use/aries"> <img
src="img/aries-logo.png" alt="client"></a></span>
<span class="mb-30 mb-md-0"><a href="https://vonx.io/about/"> <img src="img/von-logo.png"
alt="client"></a></span>
<span class="mb-30 mb-md-0"><a href="https://www2.gov.bc.ca/gov/content/home"> <img
src="img/bcgov-logo.png" alt="client"></a></span>
</div>
<!-- end of clients logo col -->
</div>
<!-- end of clients logo row -->
</div>
<!-- end of container -->
</section>
<!-- =========== End of Partner Orgs ============ -->
<!-- =========== Start of Techstack ============ -->
<section class="bg-color-grey space position-relative" id="partners">
<div class="background-holder background-holder--top">
<img src="img/pricing-bg.svg" alt="pattern" class="background-image-holder">
</div>
<div class="container">
<div class="col-12 col-lg-9 mx-auto">
<div class="section-title reveal text-center mb-80 mb-sm-50">
<h3 class="mb-3">Community Partners</h3>
<p class="lead">Vaccify is built under TrustNet's COVID Initiative which is part of a
global covid credentials initaitve and various Pakistani
organizations have contributed to it development.</p>
</div>
<!-- end of section title -->
</div>
<div class="row mt-100">
<div
class="col-12 mx-auto d-flex flex-column flex-md-row justify-content-between text-center reveal">
<span class="mb-30 mb-md-0"><a href="https://www.xord.one"> <img src="img/logo-xord.png"
alt="Xord">
</a></span>
<span class="mb-30 mb-md-0"><a href="https://www.covidcreds.com"><img src="img/cci-logo.png"
alt="COVID Credentials Initiative"></a></span>
<span class="mb-30 mb-md-0"><a href="https://www.trust.net.pk"><img src="img/tnp-logo.png"
alt="TrustNet Pakistan"></a></span>
<span class="mb-30 mb-md-0"><a href="https://www.pakistanblockchaininstitute.org"><img
src="img/pbi-logo.png" alt="Pakistan Blockchain Institute"></a></span>
</div>
<!-- end of clients logo col -->
</div>
<!-- end of clients logo row -->
</div>
<!-- end of container -->
</section>
<!-- =========== End of Techstack ============ -->
<section class="bg-color-grey space position-relative" id="partners">
<div class="background-holder background-holder--top">
<img src="img/pricing-bg.svg" alt="pattern" class="background-image-holder">
<div class="container">
<div class="row">
<div class="col-12 col-lg-6 text-center mx-auto reveal">
<h5 class="mb-20">Provide your email to join us</h5>
<!-- <p class="lead mb-50">Millions of people around the world have already made xPider the place
where their dream happens.</p> -->
<div class="position-relative text-center">
<form id="contact-form" action="#" class="form form-subscription">
<div class="input-group mb-3 mb-sm-0">
<input type="email" name="user_email" class="form-control"
placeholder="Enter your email to join" required>
</div>
<button class="btn btn--submit btn--color-primary btn--bg-white" type="submit">
<span class="btn__text">Join Us</span>
</button>
</form>
<span class="type--fine-print">Join us in taking vaccify to pilot.</span>
</div>
</div>
<!-- end of col -->
</div>
<!-- end of row -->
</div>
</div>
</section>
<!-- =========== Start of footer height emulator============ -->
<!-- this height emulator helps to calculate the fixed footer height -->
<div class="height-emulator d-none d-lg-block"></div>
<!-- =========== End of footer height emulator============ -->
<!-- =========== Start of Footer ============ -->
<footer class="footer footer--fixed">
<div class="py-5">
<div class="container">
<div class="row align-items-center justify-content-between">
<div class="col-12 col-lg-4 mb-20 mb-lg-0 text-center text-lg-left">
<span class="mb-20"><a href="#home"><img style="max-width: 60%;"
src="img/brand-logo-color.png" alt="logo"></a></span>
<p class="color-light-secondary-2">© Vaccify, TrustNet Pakistan 2020.
<br> All rights reserved.
</p>
</div>
<!-- end of col -->
<div class="col-12 col-lg-4 mb-20 mb-lg-0">
<nav class="nav justify-content-center">
<ul class="d-flex mb-md-0">
<!-- <li><a href="#" class="font-w-400">TrustNet PK</a></li> -->
<li><a target="_blank" href="terms-policy" class="font-w-400">Privacy &
Terms</a></li>
<li><a target="_blank" href="mailto:support@trust.net.pk" class="font-w-400">Contact
Us</a></li>
</ul>
</nav>
</div>
<!-- end of col -->
<div class="col-12 col-lg-4 mb-20 mb-lg-0 ml-auto">
<ul class="social-lists d-flex justify-content-center justify-content-lg-end mb-0">
<li><a target="_blank" href="https://www.facebook.com/TrustNetPakistan"><i
class="fa fa-facebook"></i></a></li>
<li><a target="_blank" href="https://twitter.com/TrustNetPK"><i
class="fa fa-twitter"></i></a></li>
<!-- <li><a href="#"><i class="fa fa-dribbble"></i></a></li> -->
<li><a target="_blank"
href="https://www.youtube.com/channel/UC99t15j-HjJHR8LdgvIMexw"><i
class="fa fa-youtube-play"></i></a></li>
<li><a target="_blank" href="https://communityinviter.com/apps/trustnetpk/join"><i
class="fa fa-slack"></i></a></li>
</ul>
</div>
</div>
<!-- end of row -->
</div>
<!-- end of container -->
</div>
<!-- end of main footer -->
</footer>
<!-- =========== End of Footer ============ -->
</div>
<script src="js/plugins.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>