-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (68 loc) · 3.51 KB
/
Copy pathindex.html
File metadata and controls
74 lines (68 loc) · 3.51 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-66541190-17"></script>
<script>
window.location.href = "https://dhcertainty.org";
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-66541190-17');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ThunderQuote Code Repository</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link href="https://use.fontawesome.com/releases/v5.13.0/css/all.css" rel="stylesheet">
<style>
.btn-xs{
font-size: .7rem;
}
.btn-demo{
padding: 0;
display: inline-flex;
align-items: center;
}
.btn-demo i{
padding: .1rem .25rem;
}
.btn-demo .text{
padding: .1rem .25rem;
}
</style>
</head>
<body class="bg-dark">
<div class="container p-5">
<div class="card">
<div class="card-header ">ThunderQuote Code</div>
<div class="card-body">
<h5 class="card-title">Welcome to the ThunderQuote Public Code Repository</h5>
<h6 class="card-subtitle mb-2 text-muted">See below for list of projects</h6>
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item">
<p class="mb-1">
<a href="/PaynowQR">SGQR Paynow generator</a><br/>
<small>Javascript plugin, compatible with nodejs & browser, for generating Singapore PayNow QR code</small>
</p>
<a class="btn btn-outline-info btn-xs btn-demo" href="/PaynowQR"><i class="far fa-play-circle"></i><span class="text bg-info text-white">Demo</span></a>
<a class="btn btn-xs btn-outline-dark btn-sm btn-demo" href="https://github.com/ThunderQuoteTeam/PaynowQR"><i class="fab fa-github"></i><span class="text bg-dark text-white">GitHub</span></a>
<a class="btn btn-xs red btn-outline-danger btn-sm btn-demo" href="https://www.npmjs.com/package/paynowqr"><i class="fab fa-npm"></i> <span class="text bg-danger text-white">NPM</span></a>
</li>
<li class="list-group-item">
<p class="mb-1">
<a href="https://github.com/ThunderQuoteTeam/XeroPayNowQR">Xero PayNowQR</a><br/>
<small>Integration of PayNow QR with Xero invoicing.</small>
</p>
<a class="btn btn-xs btn-outline-dark btn-sm btn-demo" href="https://github.com/ThunderQuoteTeam/XeroPayNowQR"><i class="fab fa-github"></i><span class="text bg-dark text-white">GitHub</span></a>
</li>
</ul>
<div class="alert alert-info m-0 p-4">
<h5 class="alert-heading">Have any questions or need help to do a custom implementation?</h5>
<hr/>
<p class="mb-0">Feel free to drop us an email at <a href="mailto:hello@thunderquote.com">hello@thunderquote.com</a>.</p></div>
</div>
</div>
</body>
</html>