-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (62 loc) · 2.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Ayodele Samuel Adebayo (unclebigbay)" />
<meta
name="description"
content="Customer self-service built with Javascript alert, prompt and functions by Ayodele Samuel Adebayo (unclebigbay)"
/>
<!-- CSS -->
<link rel="stylesheet" href="./static/css/main.css" />
<link rel="stylesheet" href="./static/css/checkout.css" />
<link rel="stylesheet" href="./static/css/about.css" />
<link
href=" https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css "
rel="stylesheet "
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6 "
crossorigin="anonymous "
/>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css" integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
<title>Customer Self Care: unclebigbay</title>
</head>
<body>
<section class="previous__wrapper">
<button class="custom__btn back__btn">Back</button>
</section>
<main class="app__container">
<section class="about__wrapper">
<button class="custom__btn about__btn" onclick="viewAboutApplication()">About</button>
</section>
<div class="init__app__wrapper">
<button class="custom__btn init__btn" onClick="init()">
get started
</button>
</div>
</main>
<footer class="footer">Designed by <a href="https://twitter.com/unclebigbay143" target="_blank">@unclebigbay</a></footer>
</body>
<!-- JAVASCRIPT SCRIPTS -->
<script src="./static/js/app.js"></script>
<!-- DATA BUNDLE SERVICE -->
<script src="./static/js/dataservice/dataService.js"></script>
<script src="./static/js/dataservice/airtel/airtelDataBank.js"></script>
<script src="./static/js/dataservice/mtn/mtnDataBank.js"></script>
<script src="./static/js/dataservice/glo/gloDataBank.js"></script>
<!-- AIRTIME SERBVICE -->
<script src="./static/js/airtimeService/airtimeService.js"></script>
<!-- PAYMENT SCRIPTS -->
<script src="./static/js/checkouts/dataBundleCheckout.js"></script>
<script src="./static/js/checkouts/airtimeCheckout.js"></script>
<script src="./static/js/bin.js"></script>
<!-- EMAIL CHECKOUT CALLBACK FUNCTION -->
<script src="./static/js/receiptEmail/receiptEmail.js"></script>
<!-- FLUTTERWAVE SCRIPTS -->
<script src="./static/js/flutterwave/payment.js"></script>
<script src="./static/js/flutterwave/airtimePayment.js"></script>
<script src="https://checkout.flutterwave.com/v3.js"></script>
<!-- ABOUT PAGE SCRIPT -->
<script src="./static/js/about.js"></script>
</html>