-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
39 lines (39 loc) · 2.04 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Scan Until Match</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<link rel="stylesheet" href="css/scan.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
<script src="js/scan.min.js"></script>
</head>
<body>
<form>
<div class="container-fluid">
<div class="row">
<div class="col">
<p>What You Seek</p>
<textarea id="seekValues" rows="20"></textarea>
<p><a href="https://github.com/MikeGarde/scan-and-match">Documentation</a></p>
</div>
<div class="col">
<p>Scan</p>
<div class="row">
<div class="col">
<input type="text" id="scanValue" placeholder="Scan Value" autocomplete="off" value="">
</div>
<div class="col-2">
<a href="#" id="confirm">Confirm Match</a>
</div>
</div>
<ul id="history"></ul>
</div>
</div>
</div>
</form>
<a href="https://github.com/MikeGarde/scan-and-match"><img class="github" src="https://camo.githubusercontent.com/c6286ade715e9bea433b4705870de482a654f78a/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f6c6566745f77686974655f6666666666662e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_left_white_ffffff.png"></a>
</body>
</html>