diff options
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 40 |
1 files changed, 24 insertions, 16 deletions
@@ -1,19 +1,27 @@ <!DOCTYPE html> <html> -<head> - <title>intercheck 0.001</title> - <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.12/angular.min.js"></script> - <style type="text/css"> - body { - - } - </style> -</head> -<body> -{% block main %} - <form method="post" action="/scan/"> - <button type="submit">Go!</button> - </form> -{% end %} -</body> + <head> + <title>intercheck 0.001</title> + <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script> + <style type="text/css"> + button { + width: 100px; + height: 50px; + } + </style> + <script type="text/javascript"> + $(function(){ + $('button').click(function(){ + console.log('SCANNING!!!'); + $.getJSON('/scan/', function(r){ + console.log(r); + }); + }); + }); + </script> + </head> + <body> + <button type="button">Go!</button> + <blockquote id="results"></blockquote> + </body> </html> |