2013-04-21 22:09:36 +00:00
<!DOCTYPE html>
< html >
< head >
< meta charset = 'utf-8' >
< title > QRDisplay on GitHub< / title >
2016-04-27 13:43:11 +00:00
< script src = "//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js" > < / script >
2013-04-21 22:09:36 +00:00
< script src = "jquery-qrcode/jquery.qrcode.min.js" > < / script >
< script src = "application.js" > < / script >
< link rel = "stylesheet" href = "style.css" type = "text/css" / >
2013-04-21 22:27:37 +00:00
<!-- Social media sharing crap... -->
< meta property = "og:title" content = "QRDisplay on GitHub" / >
< meta property = "og:type" content = "website" / >
2016-04-27 13:43:11 +00:00
< meta property = "og:url" content = "https://luzifer.github.io/qrdisplay/" / >
< meta property = "og:image" content = "https://luzifer.github.io/qrdisplay/ogimage.png" / >
2013-04-21 22:36:49 +00:00
< meta name = "description" content = "A tiny interface to generate a QRCode in the browser for direct usage..." >
2013-04-21 22:27:37 +00:00
<!-- No more sharing crap here... ;) -->
2013-04-21 22:09:36 +00:00
< / 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 >
2013-04-21 22:51:38 +00:00
< div id = "download" > < a href = "javascript:void(0);" > (Download QRCode as PNG)< / a > < / div >
2016-04-27 13:44:29 +00:00
< div id = "footer" > Quickly put together by < a href = "https://luzifer.io/" > Knut Ahlers< / a > using < a href = "http://jeromeetienne.github.io/jquery-qrcode/" > jquery-qrcode< / a > < / div >
2013-04-21 22:09:36 +00:00
< 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 >