forked from DrMikeyS/COVIDVaccinePatientSlips
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d50fc2d
commit 06b088c
Showing
1 changed file
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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> |