-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathqrGenerator.html
More file actions
67 lines (52 loc) · 2.57 KB
/
qrGenerator.html
File metadata and controls
67 lines (52 loc) · 2.57 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
<!--
/****************************************************************************************************************
*
* QR Code Generator Tool
* Author: David P. Lopez
* Company: YourMOM, Inc.
* Copyright 4343
*
* Built this using open source frameworks while working at a place full of bozos.
* You'd be surprised, the people who oversee the orgs you work for are truly incompetent.
****************************************************************************************************************/
-->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="QR Code Generator Tool">
<meta name="author" content="David P. Lopez">
<!-- CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<!-- Documentation Resource -->
<link rel="import" href="https://cdn.rawgit.com/zerodevx/zero-md/v0.2.0/build/zero-md.html">
<link rel="stylesheet" href="https://cdn.rawgit.com/zerodevx/zero-md/v0.2.0/markdown-themes/default.css">
<link rel="stylesheet" href="https://cdn.rawgit.com/zerodevx/zero-md/v0.2.0/highlight-themes/default.css">
<link rel="stylesheet" href="/qr/qrGenerator.css">
<!-- JavaScript -->
<script src="http://code.jquery.com/jquery-3.2.1.js" integrity="sha256-DZAnKJ/6XZ9si04Hgrsxu/8s717jcIzLy3oi35EouyE=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script>
</head>
<body>
<div class="container-fluid">
QR CODES: <strong>QR Code Generator Testing Suite</strong>!
<br>
<br>
<!--Navigation Tabs-->
<ul class="nav nav-tabs">
<li class="nav-item">
<a class="nav-link active" href="#QRCode">QR Code Data</a>
</li>
<li class="nav-item">
<a class="nav-link docs" href="#Docs">Documentation</a>
</li>
</ul>
<!--This is the dynamic app content-->
<!--Application Entry Point-->
<div class="view"></div>
<script src="/qr/qrController.js"></script>
</div>
</body>
</html>