-
Notifications
You must be signed in to change notification settings - Fork 0
/
software-development
976 lines (856 loc) · 47.7 KB
/
software-development
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
<!--
****************** ************ **************************** ****************************** ************* **************** ************* *********
||&&========= ========== ======================= ================== ====== ============= ============= ============= ==================== ********
|| *****
|| ███████ ████████ ██ ███ ██ ▄▓██████-███████▄ ,▄▄▓███████▓▄▄, ╓▄ ██████ ██████ ***
|| ██ ██ ██ ██ ██ ██ █ **
|| ██ ██ ██ ██ ██ ██ ██ *
|| ██ ██ ██ ██ ██ ██ ██████████ █ **
|| ██ ██ ████ ██ ██ ██ ***
|| ██ ██ ███ ██ ██ ██ ****
|| ████████████████ ██ ██ ▄▓███████████████▄ ██ █████└╙╓▄╙└███ *****
|| ******
****██*******█ █*****█ █*█ ****** ****** ********* █*****█ ██*██****███**██ █*************█ █**************█ █**************█ ************* ********
=========================================================
* INITS WEBSITE - INDEXED
=========================================================
* Copyright INITS LIMITED (https://www.initsng.com)
* Coded by BLESSING AJALA | SOFTWARE ENGINEER 🤠
========================================================
-->
<!DOCTYPE html>
<html lang="en" data-textdirection="ltr">
<head>
<!-- set the encoding of your site -->
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- set the viewport width and initial-scale on mobile devices -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- set the HandheldFriendly -->
<meta name="HandheldFriendly" content="True">
<!-- set the Keyword -->
<meta name="keywords" content="INITS Limited - IT Company">
<meta name="description" content="INITS Limited is one of Africa’s leading software development and IT consulting company,
incorporated in 2009 with offices located in Nigeria, Nairobi and New York. We offer innovative custom-made software
development solutions, interactive designs, winsome web and mobile applications and stellar human resources that meet the needs of our diverse clientèle.">
<meta name="author" content="INITS Limited(http://initsng.com)">
<meta property="og:title" content="INITS LIMITED">
<meta property="og:description" content="INITS Limited is one of Africa’s leading software development and IT consulting company,
incorporated in 2009 with offices located in Nigeria, Nairobi and New York. We offer innovative custom-made software
development solutions, interactive designs, winsome web and mobile applications and stellar human resources that meet the needs of our diverse clientèle.">
<meta property="og:image" content="https://initsng.com/assets/img/logo/favicon.jpg">
<meta property="og:url" content="www.initsng.com">
<!-- include poppins google font cdn link -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500,500i,600,600i,700,700i%7CRoboto:400,400i,500,500i,700,700i" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Heebo:wght@300;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
<!-- set the page title -->
<title>INITS Limited | Software Development</title> <!-- include the site bootstrap stylesheet -->
<link rel="stylesheet" href="website/css/bootstrap.css">
<link rel="stylesheet" href="website/css/bootstrap-float-label.css">
<!-- include the site Fontsicon stylesheet -->
<link rel="stylesheet" href="https://initsng.com/website/css/fontsicon.css">
<!-- include the site Plugins stylesheet -->
<link rel="stylesheet" href="https://initsng.com/website/css/plugins.css">
<link rel="stylesheet" href="website/css/jquery-ui.min.css">
<link rel="stylesheet" href="website/css/animate.css">
<!-- include the site stylesheet -->
<link rel="stylesheet" href="website/css/all.css">
<link rel="stylesheet" href="website/css/style.css">
<link rel="stylesheet" href="website/css/main.css">
<link rel="stylesheet" href="website/css/colors.css">
<!-- include the site responsive stylesheet -->
<link rel="stylesheet" href="website/css/responsive.css">
<link href="assets/img/logo/favicon.jpg" type="image/x-icon" rel="icon" />
<link href="assets/img/logo/favicon.jpg" type="image/x-icon" rel="shortcut icon" />
<link rel="apple-touch-icon" sizes="180x180" href="website/assets/icons/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="website/assets/icons/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="website/assets/icons/favicon-16x16.png" />
<link rel="mask-icon" href="website/assets/icons/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="phone_inputs/build/css/intlTelInput.css">
<style>
.iti{
width: 100% !important;
}
.iti__country-list{
background-color: #303030;
border-radius: 3px;
}
</style>
</head>
<body>
<!-- pageWrapper -->
<div id="pageWrapper">
<!-- pageHeader -->
<header id="pageHeader">
<!-- pageHeaderTopBar -->
<div class="pageHeaderTopBar bg-light d-none d-lg-block">
<div class="container clearfix position-relative">
<div class="row">
<div class="col-3 col-lg-6 my-auto">
<!-- topBarContactList -->
<ul class="list-unstyled topBarContactList align-items-center mb-0 d-none d-md-flex">
<li>
<a href="tel:+234 708 067 2012">
<span class="d-none d-lg-inline">Phone: <a onclick="ga('send', 'event', { eventCategory: 'Contact', eventAction: 'Call', eventLabel: 'Mobile Button'});" href="tel:+234 708 067 2012">+234 708 067 2012</a></span>
</a>
</li>
<li class="muted">|</li>
<li>
<a href="software-development#">
<span class="d-none d-lg-inline">Email: <a href="mailto:[email protected]">[email protected]</a></span>
</a>
</li>
</ul>
</div>
<div class="col-9 col-lg-6 col-xs-12 my-auto d-flex justify-content-end position-static">
<!-- socialLinksList -->
</div>
</div>
</div>
</div>
<div class="headerFixer">
<div class="bg-white">
<!-- pageHeaderHolder -->
<div class="container clearfix pageHeaderHolder">
<!-- logo -->
<div class="logo alignleft">
<a href="index.html">
<img src="website/assets/images/logo.png" alt="INITS Limited">
</a>
</div>
<!-- pageNavHolder -->
<div class="pageNavHolder alignright d-flex justify-content-end align-items-md-start">
<!-- pageNav navbar -->
<nav id="pageNav" class="navbar navbar-expand-lg order-lg-1">
<!-- pageMainNavOpener -->
<button class="navbar-toggler pageMainNavOpener" type="button" data-toggle="collapse" data-target="#pageMainNavCollapse" aria-controls="pageMainNavCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- mainNavCollapse navbar collapse -->
<div class="collapse navbar-collapse mainNavCollapse" id="pageMainNavCollapse">
<!-- pageMainNavigation navbar nav -->
<ul class="navbar-nav pageMainNavigation justify-content-md-end">
<li class="nav-item dropdown">
<a style="cursor: not-allowed;" class="nav-link fwMedium text-capitalize" href="index.html">Home</a>
</li>
<li class="nav-item dropdown">
<a disabled class="nav-link fwMedium text-capitalize" href="about">About Us</a>
</li>
<li class="nav-item active dropdown">
<a class="nav-link fwMedium text-capitalize" href="index.html#services">Services</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link fwMedium text-capitalize" href="portfolio">Portfolio</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link fwMedium text-capitalize" href="career">Career</a>
</li>
<li class="nav-item ">
<a class="nav-btn fwMedium text-capitalize" href="contact">Contact</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</div>
</header>
<main>
<section class="w-100 imageHeader contentBlock1 ">
<!-- banner -->
<header class="container">
<div class="row">
<div class="col-md-6 my-auto">
<div class="imageHeaderText">
<h1>Software Development</h1>
<p>
We have developed several web-based and mobile solutions for a wide variety of clients from different commercial and public sectors.<br><br>
Tell us about your business requirements in the form below.
</p>
</div>
<div class="mt-5">
<a class="link link--arrowed" href="software-development#requestForm">
<span class="mr-3"><img class="wow tada" data-wow-iteration="infinite" data-wow-duration="1s" src="website/assets/icons/scroll-2.svg" alt=""></span> Request this Service </a>
</div>
</div>
<div class="col-md-6 my-auto d-none d-md-block">
<div class="row">
<div class="col-md-10 my-auto ml-auto mr-0">
<div class="h-100 d-flex">
<img src="website/assets/services-img/development.webp" alt="">
</div>
</div>
</div>
</div>
</div>
</header>
</section>
<!-- What we offer -->
<section>
<div class="contentBlock servicesBlock text-center">
<div class="container mb-4">
<div class="row">
<div class="col-lg-8 mx-auto">
<!-- headingHead -->
<div class="headingHead mb-0 mt-0 wow fadeInUp" data-wow-delay="0.1s">
<!-- blockH -->
<h2 class="text-capitalize blockH hTitle mt-0">Our Process</h2>
<p> Our Research, Design, Build framework has been tried, tested and proven.</p>
</div>
</div>
<div class="col-md-12">
<div class="row mt-5">
<div class="col-md-4 wow tada">
<div class="process-card card text-center">
<div class="process-img">
<img src="website/assets/icons/research.svg" alt="">
</div>
<div class="card-title">
<h4>Research</h4>
</div>
<div class="card-body">
<p>This phase forms the building blocks of the project. We get right under the skin of your business,
defining user needs and identifying your commercial goals. This givs us the insight we need to make a difference.
</p>
</div>
</div>
</div>
<div class="col-md-4 wow tada">
<div class="process-card card text-center">
<div class="process-img">
<img src="website/assets/icons/design.svg" alt="">
</div>
<div class="card-title">
<h4>Design</h4>
</div>
<div class="card-body">
<p>We design with data, crafting solutions around real customer activity.
Our designers strip back the unnecessary and focus on what’s important - delivering simple,
engaging digital experiences that works and is scalable
</p>
</div>
</div>
</div>
<div class="col-md-4 wow tada">
<div class="process-card card text-center">
<div class="process-img">
<img src="website/assets/icons/development.svg" alt="">
</div>
<div class="card-title">
<h4>Development</h4>
</div>
<div class="card-body">
<p>This is the phase where your dreams become reality.
Everything we create is with scale and the future in mind.
We work with a cycle of iterative improvement that continues long after launch.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> <!-- consulting areas -->
<section id="devServices-1">
<div class="contentBlock4 servicesCard text-center">
<div class="container mb-4">
<div class="row">
<div class="col-lg-6 mx-auto wow slideInLeft" data-wow-delay="0.1s">
<!-- headingHead -->
<div class="headingHead text-left">
<h2 class="text-capitalize blockH hTitle">User Experience</h2>
<p>
At INITS, the end user comes first. They are at the heart of all the work we do. <br><br>
Through UX research & discovery, user journey workshops and information architecture, we plan and plot every element of the user experience for maximum results. </p>
</div>
<div class="row">
<div class="col-md-6">
<div class="servicesList text-left">
<ul>
<li>Research & Discovery</li>
<li>User Journey</li>
</ul>
</div>
</div>
<div class="col-md-6">
<div class="servicesList text-left">
<ul>
<li>Information Architecture</li>
<li>Rapid Prototyping</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-md-6 my-auto d-none d-md-block wow slideInRight" data-wow-delay="0.1s">
<div class="row">
<div class="col-md-11 my-auto ml-auto mr-0">
<div class="h-100 d-flex">
<img src="website/assets/services-img/ux.jpg" alt="">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="devServices-2">
<div class="contentBlock servicesCard text-center">
<div class="container mb-4">
<div class="row">
<div class="col-md-6 my-auto d-none d-md-block wow slideInLeft" data-wow-delay="0.1s">
<div class="row">
<div class="col-md-11 my-auto mr-auto ml-0">
<div class="h-100 d-flex">
<img src="website/assets/services-img/ui.jpg" alt="">
</div>
</div>
</div>
</div>
<div class="col-lg-6 mx-auto wow slideInRight" data-wow-delay="0.1s">
<!-- headingHead -->
<div class=" headingHead text-left">
<h2 class="text-capitalize blockH hTitle">Digital Design</h2>
<p>
Any agency can make things look good. For us, effectiveness is everything.
That’s why our digital design process centres on growth-driven design sprints,
continuously improving the output of your solution - even after it’s left the studio.
</p>
</div>
<div class="row">
<div class="col-md-5">
<div class="servicesList text-left">
<ul>
<li>User Interface Design</li>
<li>Digital Products</li>
<li>Digital Services</li>
</ul>
</div>
</div>
<div class="col-md-7">
<div class="servicesList text-left">
<ul>
<li>App Design</li>
<li>Design Systems</li>
<li>Conversion Rate Optimisation</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="devServices-3">
<div class="contentBlock4 servicesCard text-center">
<div class="container mb-4">
<div class="row">
<div class="col-lg-6 mx-auto wow slideInLeft" data-wow-delay="0.1s">
<!-- headingHead -->
<div class="headingHead text-left">
<h2 class="text-capitalize blockH hTitle">Technology</h2>
<p>Our experienced development team builds solutions at the leading edge of tech
to keep your digital assets effective, secure and seamlessly integrated - connecting
your business to its users in innovative new ways.
</p>
</div>
<div class="row">
<div class="col-md-6">
<div class="servicesList text-left">
<ul>
<li>Front-end Development</li>
<li>API Implementation</li>
<li>e-Commerce</li>
</ul>
</div>
</div>
<div class="col-md-6">
<div class="servicesList text-left">
<ul>
<li>Wordpress Development</li>
<li>Payment Integrations</li>
<li>DevOps & Infrastructure</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-md-6 my-auto d-none d-md-block wow slideInRight" data-wow-delay="0.1s">
<div class="row">
<div class="col-md-11 my-auto ml-auto mr-0">
<div class="h-100 d-flex">
<img src="website/assets/services-img/tech.jpg" alt="">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Features -->
<section id="requestForm">
<div class="contentBlock1 servicesBlock text-center">
<div class="container wow">
<div class="row">
<!-- <div class="col-12 offset-md-1 col-md-10 offset-lg-2 col-lg-8 offset-xl-3 col-xl-6"> -->
<div class="col-md-8 mx-auto wow fadeIn" data-wow-delay="0.2s">
<!-- headingHead -->
<header class="headingHead">
<!-- blockH -->
<h2 class="text-capitalize blockH hTitle ">How can we help?</h2>
<p class="mt-5 mb-5">
We would love to build something amazing together. <br>
Tell us about your business requirements.
</p>
</header>
</div>
<div class="col-md-9 mx-auto wow fadeIn" data-wow-delay="0s">
<div class="contact-details contact-details-dark">
<div class="card">
<div class="message text-left">
<form class="message text-left" onsubmit="process(event)" method="post" action="https://initsng.com/software_dev/save" enctype="multipart/form-data">
<input type="hidden" name="_token" value="Suq7IjhFOr0aNFhj3ZCeInsbJyUr7PAZj7XqsmbJ"> <input name="robot_csrf" hidden>
<div class="row">
<div class="col-md-12">
<div class="row">
<div class="col-md-12">
</div>
<div class="col-lg-6 col-md-12">
<span class="has-float-label">
<input required type="text" id="fname" name="name" value="" class="form-control" placeholder="First Name">
<label for="fname">First Name</label>
</span>
</div>
<div class="col-lg-6 col-md-12">
<span class="has-float-label">
<input required type="text" id="email" name="email" value="" class="form-control" placeholder="Enter valid email address">
<label for="email">Email Address</label>
</span>
</div>
<div class="col-md-6">
<span class="has-float-label">
<input type="tel" onkeyup="process(event)" id="phone_number" required name="phone_number" value="+234 " class="form-control" placeholder="Enter a valid Phone Number">
<label for="pnum">Phone Number</label>
</span>
<small class="text-success alerts-success" style="display: none"></small>
<small class=" text-danger alert-error" style="display: none"></small>
<input id="phone_input" name="phone" value="" hidden>
</div>
<div class="col-md-6">
<span class="has-float-label">
<input id="need" required type="text" name="subject" value="" class="form-control" placeholder="state your needs..">
<label for="need">What can we Help you with?</label>
</span>
</div>
<div class="col-md-12">
<span class="has-float-label">
<textarea id="msg" required name="message" rows="10" class="form-control" placeholder="Enter message here…"></textarea>
<label for="msg">Message</label>
</span>
</div>
<div class="col-md-12 mb-5">
<div id="upload-container" style="cursor: pointer">
<div style="cursor: pointer" id="upload-border" onclick="triggerFileUpload()">
<nobr>
<input style="cursor: pointer" type="text" id="upload-name" class="" disabled="true" placeholder="Attach a file" />
<button type="button" id="upload-button"><img src="website/assets/icons/arrowUp.svg" alt=""></button>
</nobr>
</div>
<input type="file" name="uploaded_file" hidden class="hidden_file_upload" id="hidden-upload" />
</div>
</div>
<div class="col-md-12">
<div class="chk-container p-0">
<input class="styled-checkbox" id="tnc-chk" type="checkbox" value="value2">
<label for="tnc-chk">
I acknowledge that by submitting this form, it shall be deemed that I agree to the <a href="privacy-policy">Privacy Policy</a>
</label>
</div>
</div>
<!-- Recaptcha -->
<div class="col-md-12">
<div class="form-group ">
<div class="g-recaptcha m-auto" data-sitekey="6Ld2YoEaAAAAADeQfo2dwGoAlRcRRe9xZttgXJYM"></div>
</div>
</div>
</div>
</div>
</div>
<button style="cursor: pointer" class="border-btn" type="submit" name="button">submit</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<div class="pageFooterAreaWrap position-relative text-center text-sm-left" data-parallax="scroll" data-image-src="images/footer-image.png">
<div class="position-relative pageFooterWrapHolder">
<div class="container">
<footer id="pageFooter" class="position-relative">
<div class="row">
<div class="col-lg-3 col-md-12">
<div class="logo">
<a href="index.html">
<img src="website/assets/images/logo.png" alt="INITS Limited">
</a>
</div>
</div>
<div class="col-lg-9 col-md-12">
<div class="row">
<div class="col-md-3">
<div class="link-item mx-auto">
<h3>OFFICIAL HOURS</h3>
<ul class="list-unstyled">
<li>09:00am | 05:00pm</li>
<li>Monday to Friday</li>
</ul>
</div>
</div>
<div class="col-md-3">
<div class="link-item mx-auto">
<h3>Contact</h3>
<ul class="list-unstyled">
<li><a href="mailto:[email protected]">[email protected]</a></li>
<li><a onclick="ga('send', 'event', { eventCategory: 'Contact', eventAction: 'Call', eventLabel: 'Mobile Button'});" href="tel:+234 708 067 2012">+234 708 067 2012</a></li>
</ul>
</div>
</div>
<div class="col-md-3">
<div class="link-item mx-auto">
<h3>Address</h3>
<ul class="list-unstyled">
<li>
<p>16 Majaro Street,
<br> Onike - Yaba,
<br> Lagos, Nigeria</p>
</li>
</ul>
</div>
</div>
<div class="col-md-3">
<div class="link-item mx-auto">
<h3>Quick Links</h3>
<ul class="list-unstyled">
<li><a href="faq">FAQ</a></li>
<li><a href="terms-and-conditions">Terms & Conditions</a></li>
<li><a href="privacy-policy">Privacy Policy</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</footer>
</div>
<hr class="separator">
<div class="container">
<div class="copyrightWrap">
<p>Copyright ©2022 INITS, All Rights Reserved.</p>
</div>
<!-- compliance icon added -->
<div style="position:fixed;bottom:5px;right:0;padding:5px 60px 5px 15px; background:rgba(246, 246, 240, 0)">
<img style="max-height:50px;"src="website/assets/images/NDPRlogo.png" alt="NDPR Audit Compliant 2022">
</div>
<!-- compliance icon end -->
</div>
</div>
</div>
<!-- pageFooterAreaWrap -->
<div class="modal fade" id="pwdChanged" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog mini" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title text-left">Update Password</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<form class="pwdChange" id="pwdChange" action="https://initsng.com/applicant/change-password" method="post">
<input type="hidden" name="_token" value="Suq7IjhFOr0aNFhj3ZCeInsbJyUr7PAZj7XqsmbJ"> <div class="modal-body">
<div class="row">
<div class="col-md-12">
<span class="has-float-label">
<input type="password" id="cPWD" name="old_password" class="form-control" placeholder=" " required />
<label for="cPWD">Current Password</label>
</span>
<small style="position: absolute; bottom: 10px; font-family: 'Roboto', sans-serif; font-size: 10px; font-weight: 300" id="oPASSErr" class="text-danger"></small>
</div>
<div class="col-md-12">
<span class="has-float-label">
<input type="password" id="nPWD" minlength="8" name="new_password" class="form-control" placeholder=" " required />
<label for="nPWD">New Password</label>
</span>
<small style="position: absolute; bottom: 10px; font-family: 'Roboto', sans-serif; font-size: 10px; font-weight: 300" class="text-danger" id="nPASSErr"></small>
</div>
<div class="col-md-12">
<span class="has-float-label">
<input type="password" id="cnPWD" minlength="8" name="new_password_confirmation" class="form-control" placeholder=" " required />
<label for="cnPWD">Confirm New Password</label>
</span>
<small style="position: absolute; bottom: 10px; font-family: 'Roboto', sans-serif; font-size: 10px; font-weight: 300" class="text-danger" id="cPASSErr"></small>
</div>
</div>
</div>
<div class="modal-footer p-auto">
<button type="button" id="setNewPassBtn" class="btn-outline">Save Changes</button>
</div>
</form>
</div>
</div>
</div>
</div>
<span id="back-top" class="text-center rounded-circle fas fa-angle-up"></span>
<div id="loader" class="loader-holder">
<div class="block">
<div class="dot white"></div>
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
</div>
</div>
<!-- include jQuery library -->
<script src="website/js/jquery.min.js"></script>
<script src="website/js/popper.min.js"></script>
<script src="website/js/jquery-3.3.1.min.js"></script>
<!-- include Plugins JavaScript -->
<script src="website/js/plugins.js"></script>
<!-- include custom JavaScript -->
<script src="website/js/jquery.main.js"></script>
<script src="website/js/wow.min.js"></script>
<script src="website/js/main.js"></script>
<script src="website/js/datatables.min.js"></script>
<script>
var old_pass_checker = false;
$('#setNewPassBtn').click(function(){
var old_pass = $('#cPWD').val();
var new_pass = $('#nPWD').val();
var new_pass_conf = $('#cnPWD').val();
old_pass_checker = true;
if(old_pass.length < 3) {
$('#oPASSErr').html('Please provide your current password.');
return old_pass_checker = false;
}
confirmOldPassword(old_pass);
$('#nPASSErr').html('');
$('#cPASSErr').html('');
if(new_pass.length < 8) {
$('#nPASSErr').html('Your new password must have at least 8 character.');
old_pass_checker = false;
}else if(new_pass !== new_pass_conf) {
$('#cPASSErr').html('The password confirmation does not match.');
old_pass_checker = false;
}
if(old_pass_checker == true){
return $('#pwdChange').submit();
}
});
function confirmOldPassword(password)
{
$.ajax({
url: "https://initsng.com/applicant/password-confirmation",
method: "POST",
dataType: 'json',
data: {password: password, _token: "Suq7IjhFOr0aNFhj3ZCeInsbJyUr7PAZj7XqsmbJ"}
}).done(function (result) {
let data = result.status;
console.log(data);
old_pass_checker = true;
$('#oPASSErr').html('');
if(data === false){
$('#oPASSErr').html('['+ password +'] does not match your current password.');
old_pass_checker = false;
}
return true;
}).fail(function (err) {
console.error(err);
return false;
});
}
</script>
<script>
$(document).ready(function() {
function offSetManager() {
var yOffset = 0;
var currYOffSet = window.pageYOffset;
if (yOffset < currYOffSet) {
myNavBar.add();
} else if (currYOffSet == yOffset) {
myNavBar.remove();
}
}
window.onscroll = function(e) {
offSetManager();
}
offSetManager();
});
</script>
<script>
$('#slick-slider').slick({
draggable: true,
autoplay: true,
autoplaySpeed: 2000,
touchThreshold: 1000,
dots: false,
infinite: true,
arrows: false,
speed: 300,
slidesToShow: 3,
slidesToScroll: 1,
responsive: [{
breakpoint: 1024,
settings: {
slidesToShow: 3,
slidesToScroll: 3,
infinite: true,
dots: true
}
},
{
breakpoint: 600,
settings: {
slidesToShow: 2,
slidesToScroll: 2
}
},
{
breakpoint: 480,
settings: {
slidesToShow: 1,
slidesToScroll: 1
}
}
]
});
// Custom carousel nav
$('.carousel-prev').click(function() {
$(this).parent().find('#slick-slider').slick('slickPrev');
});
$('.carousel-next').click(function(e) {
e.preventDefault();
$(this).parent().find('#slick-slider').slick('slickNext');
});
</script>
<script>
$('#slick-slider-2').slick({
draggable: true,
autoplay: true,
autoplaySpeed: 2000,
touchThreshold: 1000,
dots: false,
infinite: true,
arrows: false,
slidesToShow: 5,
slidesToScroll: 1,
responsive: [{
breakpoint: 1024,
settings: {
slidesToShow: 3,
slidesToScroll: 3,
infinite: true,
dots: false
}
},
{
breakpoint: 600,
settings: {
slidesToShow: 2,
slidesToScroll: 2
}
},
{
breakpoint: 480,
settings: {
slidesToShow: 1,
slidesToScroll: 1
}
}
]
});
// Custom carousel nav
$('.carousel-prev').click(function() {
$(this).parent().find('#slick-slider-2').slick('slickPrev');
});
$('.carousel-next').click(function(e) {
e.preventDefault();
$(this).parent().find('#slick-slider-2').slick('slickNext');
});
function returnBack(url)
{
window.location = url;
}
</script>
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<script>
function triggerFileUpload()
{
$('.hidden_file_upload').click();
}
</script>
<script src="phone_inputs/build/js/intlTelInput.js"></script>
<script>
var input = document.querySelector("#phone_number");
const phoneInput = window.intlTelInput(input, {
// allowDropdown: false,
// autoHideDialCode: false,
// autoPlaceholder: "off",
// dropdownContainer: document.body,
// excludeCountries: ["us"],
// formatOnDisplay: true,
// geoIpLookup: function(callback) {
// $.get("http://ipinfo.io", function() {}, "jsonp").always(function(resp) {
// var countryCode = (resp && resp.country) ? resp.country : "";
// callback(countryCode);
// });
// },
// hiddenInput: "full_number",
// initialCountry: "auto",
// localizedCountries: { 'de': 'Deutschland' },
nationalMode: true,
// onlyCountries: ['us', 'gb', 'ch', 'ca', 'do'],
placeholderNumberType: "MOBILE",
// preferredCountries: ['cn', 'jp'],
separateDialCode: true,
utilsScript: "https://initsng.com/phone_inputs/build/js/utils.js",
});
const info = document.querySelector(".alerts-success");
const error = document.querySelector(".alert-error");
function process(event) {
// event.preventDefault();
const phoneNumber = phoneInput.getNumber();
info.style.display = "none";
error.style.display = "none";
if (!phoneInput.isValidNumber()) {
error.style.display = "";
error.innerHTML = `<i class="fa fa-times-circle"></i> Invalid phone number.`;
event.preventDefault();
return false;
}
info.style.display = "";
info.innerHTML = `<i class="fa fa-check-circle"></i> Valid phone number`;
var country_code = phoneInput.getSelectedCountryData()["dialCode"];
phoneInput.setNumber(phoneNumber);
var contact_number = $('#phone_number').val();
var contact_markup = '+' + country_code + ' ' + contact_number;
$('#phone_input').val(contact_markup);
return true;
}
input.addEventListener("close:countrydropdown",function() {
process(event);
});
</script>
</body>
</html>