summaryrefslogtreecommitdiffstats
path: root/index.html
diff options
context:
space:
mode:
authorFilipp Lepalaan <f@230.to>2014-02-13 18:43:39 +0200
committerFilipp Lepalaan <f@230.to>2014-02-13 18:43:39 +0200
commit4360585272f9c32913bee2b4b203e9588717ddbb (patch)
tree8b6bcc7ade69673ca4cf3dcf17005a4424398405 /index.html
parentde7e367e1c74940317a1188f44c72547f6dec837 (diff)
downloadintercheck-4360585272f9c32913bee2b4b203e9588717ddbb.tar.gz
intercheck-4360585272f9c32913bee2b4b203e9588717ddbb.tar.bz2
intercheck-4360585272f9c32913bee2b4b203e9588717ddbb.zip
Better?
Diffstat (limited to 'index.html')
-rw-r--r--index.html63
1 files changed, 51 insertions, 12 deletions
diff --git a/index.html b/index.html
index 134bbf2..31dfd14 100644
--- a/index.html
+++ b/index.html
@@ -3,25 +3,64 @@
<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);
+ $('.prompt').focus();
+ $('form').submit(function(e){
+ e.preventDefault();
+ var args = $('.prompt').val();
+ $('.prompt').val('');
+ $.getJSON('/scan/', {'cmd': args}, function(r){
+ $(r.results).each(function(i, e){
+ $('<li/>').text(e.raw).appendTo('.output');
+ });
+ $('<li/>').addClass('divider').appendTo('.output');
});
});
});
</script>
+ <style type="text/css">
+ body, html, ul {
+ padding: 0;
+ margin: 0;
+ }
+ body {
+ background-color: #222;
+ font: 12pt "Monaco";
+ color: #fff;
+ }
+ .divider {
+ border: 1px solid #aaa;
+ }
+ .log {
+ width: 100%;
+ }
+ .output {
+ margin: 5px;
+ list-style: none;
+ }
+ .prompt {
+ bottom: 0;
+ height: 30px;
+ width: 100%;
+ border: none;
+ position: fixed;
+ font: 12pt "Monaco";
+ background-color: #fff;
+ }
+ .prompt:focus {
+ outline-width: 0;
+ }
+ </style>
</head>
<body>
- <button type="button">Go!</button>
- <blockquote id="results"></blockquote>
+ <div class="wrapper">
+ <div class="log">
+ <ul class="output"></ul>
+ </div>
+ <form method="post" action="">
+ <input type="text" class="prompt"></input>
+ </form>
+ </div>
</body>
</html>