mirror of
https://github.com/Luzifer/qrdisplay.git
synced 2024-12-22 20:31:18 +00:00
25 lines
1.1 KiB
HTML
25 lines
1.1 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset='utf-8'>
|
||
|
<title>QRDisplay on GitHub</title>
|
||
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
|
||
|
<script src="jquery-qrcode/jquery.qrcode.min.js"></script>
|
||
|
<script src="application.js"></script>
|
||
|
<link rel="stylesheet" href="style.css" type="text/css" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="container">
|
||
|
<h1>QRDisplay on GitHub</h1>
|
||
|
<div id="infield">
|
||
|
<p><label for="encode">Tell me what to put into the QRCode:</label></p>
|
||
|
<p><textarea id="encode">http://blog.knut.me/</textarea></p>
|
||
|
<p><input type="submit" value="Get my QRCode!" id="triggerCreate" /></p>
|
||
|
</div>
|
||
|
<div id="qrarea"></div>
|
||
|
<div id="footer">Quickly put together by <a href="http://blog.knut.me/">Knut Ahlers</a> using <a href="http://jeromeetienne.github.io/jquery-qrcode/">jquery-qrcode</a></div>
|
||
|
<a href="https://github.com/Luzifer/qrdisplay"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_white_ffffff.png" alt="Fork me on GitHub"></a>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|