forked from DrMikeyS/COVIDVaccinePatientSlips
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdependancies.html
82 lines (74 loc) · 3.27 KB
/
dependancies.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Patient List</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--Libraries-->
<link rel="stylesheet" href="scripts/libraries/css/bootstrap.min.css">
<script src="scripts/libraries/js/jquery-3.6.0.min.js"></script>
<script src="scripts/libraries/js/bootstrap.bundle.min.js"></script>
<script src="scripts/libraries/js/jquery.csv.min.js"></script>
<script src="scripts/libraries/js/jquery.qrcode.min.js"></script>
<!--Custom scripts-->
<link rel="stylesheet" href="scripts/style.css">
</head>
<body>
<div id="input-modal" class="container mt-5">
<div id="page-1">
<h1>COVID Vaccine QR Generator 3.12</h1>
<p>An open-source tool that allows you to convert a CSV list of patients into a printable pack of
patient
slips to
make using Pinnacle a breeze.</p>
<div class="card">
<div class="card-body">
<h3>Dependancies</h3>
<table>
<tr>
<th>Dependancy</th>
<th>Licence</th>
<th>Latest Version</th>
<th>Version in use</th>
<th>Link</th>
</tr>
<tr>
<td>JQuery</td>
<td>MIT</td>
<td><img src="https://img.shields.io/github/release/jquery/jquery" /></td>
<td>3.6.0</td>
<td><a href="https://github.com/jquery/jquery">https://github.com/jquery/jquery</a></td>
</tr>
<tr>
<td>jquery-csv</td>
<td>MIT</td>
<td><img src="https://img.shields.io/github/release/evanplaice/jquery-csv.svg" /></td>
<td>v1.0.21</td>
<td><a
href="https://github.com/evanplaice/jquery-csv">https://github.com/evanplaice/jquery-csv</a>
</td>
</tr>
<tr>
<td>jquery-qrcode</td>
<td>MIT</td>
<td>21 Jun 2018</td>
<td>21 Jun 2018</td>
<td><a
href="https://github.com/jeromeetienne/jquery-qrcode">https://github.com/jeromeetienne/jquery-qrcode</a>
</td>
</tr>
<tr>
<td>bootstrap</td>
<td>MIT</td>
<td><img src="https://img.shields.io/github/release/twbs/bootstrap" /></td>
<td>v5.1.1</td>
<td><a href="https://github.com/twbs/bootstrap">https://github.com/twbs/bootstrap</a>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</body>
</html>