summaryrefslogtreecommitdiffstats
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html40
1 files changed, 24 insertions, 16 deletions
diff --git a/index.html b/index.html
index 89cb1f5..134bbf2 100644
--- a/index.html
+++ b/index.html
@@ -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>