-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.htm
35 lines (30 loc) · 1.1 KB
/
index.htm
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
<!DOCTYPE html>
<html manifest="scry.appcache">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" href="scry.css" />
<title>Scry - Magic: The Gathering card search</title>
</head>
<body>
<img id="cardImage">
<article>
<h1>Scry</h1>
<h2 id="status"></h2>
<form action="api.php" method="POST">
<input id="name" placeholder="Card name">
<input type="submit" value="Get" >
<ul id="suggestions"></ul>
</form>
<dl id="results"></dl>
<p class="credit">
Powered by <b><a href="http://github.com/stegriff/magic-api">magic-api</a></b> (<a href="api.php">go to</a>)
and <a href="http://stegriff.co.uk">@SteGriff</a>
</p>
<p class="credit"><a href="http://dogecoin.com">Wow Ð</a> <code>DUPMGGzzZYr1qihXy7EhYtPjxaevAjvsEc</code></p>
</article>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script type="text/javascript" src="js/scry.js"></script>
<script type="text/javascript" src="js/placeholder.js"></script>
</body>
</html>