forked from philo-jh/MTG-Proxy-Generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (64 loc) · 3.96 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Print proxy versions of MTG cards for playtest and casual use.">
<meta name="author" content="Jacob Houser">
<title>MTG Proxy Generator</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="print.css">
</head>
<body class="text-center">
<header class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column" role="banner">
<nav class="navbar navbar-light bg-light d-print-none" role="navigation" style="background-color: #e3f2fd;">
<a class="navbar-brand" href="index.html">
<img class = "home-icon" src="d10.svg" width="30" height="30" class="d-inline-block align-top" alt="A ten-sided die">MTG Deck Tester</a>
<div class="edit-review"></div>
</nav>
</header>
<main class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column" role="main">
<section class="disclaimer jumbotron" role="region">
<h1 class="display-4">Print Proxy-Cards for Magic the Gathering</h1>
<p class="lead">This APP allows you to print test-versions of cards for the ultra-popular trading card game, Magic the Gathering. Playtest cards you are interested in before purchasing or protect valuable originals you already own during casual use.</p>
<hr class="my-4">
<button type="button" class="accept-terms btn btn-success btn-lg">Get Started</button>
</section>
<section class="js-input-section" role="region">
<form>
<fieldset>
<legend>Enter your decklist below:</legend>
<textarea class="js-queryList form-control centered" placeholder-x="" role="textbox" aria-label="decklist"></textarea>
</fieldset>
<button class="btn btn-primary js-generate-button centered" type="submit">Generate</button>
<button class="btn btn-danger js-clear-button centered" type="button">Clear</button>
</form>
</section>
<section class="js-results row no-gutters" role="region" aria-live="assertive">
</section>
</main>
<footer class="mastfoot mt-auto" role="contentinfo">
<div class="inner">
<p>Read about WoTC's official stance on proxies <a href="https://magic.wizards.com/en/articles/archive/news/proxies-policy-and-communication-2016-01-14" target="blank">here</a>. You may not use this site for profit in any way. All images are property of WoTC and/or their respecitive artist.</p>
</div>
<div class="inner">
<p>Using the insanely good <a href="https://scryfall.com/" target="blank">ScryFall</a> API</p>
</div>
<div class="inner">
<p>Created by <a href="https://github.com/philo-jh">Jacob Houser</a>.</p>
</div>
</footer>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="https://code.jquery.com/jquery-3.3.1.min.js"><\/script>')</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js" integrity="sha384-cs/chFZiN24E4KMATLdqdvsezGxaGsi4hLGOzlXwp5UZB1LY//20VyM2taTB4QvJ" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js" integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm" crossorigin="anonymous"></script>
<script src="jquery.placeholder.js"></script>
<script src="constants.js"></script>
<script src="client.js"></script>
<script src="index.js"></script>
</body>
</html>