-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathfusion-search.html
162 lines (154 loc) · 7.6 KB
/
fusion-search.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Yu-Gi-Oh! Forbiden Memories fusion list" />
<meta name="keywords" content="Yu-Gi-Oh!, YuGiOh, Forbiden Memories, playstation, Fusion" />
<meta name="robots" content="index, follow" />
<title>Yu-Gi-Oh! Forbiden Memories Fusion Calculator</title>
<link rel="icon" type="image/x-icon" href="public/images/yugioh.ico" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500&display=swap"
rel="stylesheet"
/>
<link href="https://fonts.googleapis.com/css2?family=Varela+Round&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="public/styles/normalize.css" />
<link rel="stylesheet" type="text/css" href="public/styles/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="public/styles/home.css" />
<link rel="stylesheet" type="text/css" href="public/styles/awesomplete.css" />
</head>
<body class="bg-dark d-flex flex-column min-vh-100 polymerization">
<header class="navbar navbar-expand-lg navbar-light bg-light flex-column flex-md-row">
<a class="navbar-brand text-truncate" href="index.html">
<img
class="img-fluid ml-4"
id="logo"
src="./public/images/logo.png"
alt="Yu-Gi-Oh! Forbiden Memories Logo"
/>
</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon d-md-none p-0 mx-2 collapsed"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link text-dark" href="fusion-search.html">Fusion Search</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" href="fusion-calculator.html">Fusion Calculator</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" href="about.html">About</a>
</li>
<li class="nav-item">
<a
class="btn btn-bd btn-thread"
href="http://forums.somethingawful.com/showthread.php?threadid=3783156"
rel="noopener noreferrer"
target="_blank"
>Thread</a
>
</li>
</ul>
</div>
</header>
<main class="container">
<section class="row mt-3 rounded-lg bg-light">
<div class="col">
<h2 class="text-main my-5 text-center">SEARCH</h2>
<div class="row my-3">
<div class="col-sm-8 offset-sm-1 col-md-5 offset-md-1 d-flex flex-column">
<p>Type the card name</p>
<input class="w-100" type="text" id="cardname" />
<div class="btn-group my-5" role="group">
<button type="button" class="btn btn-outline-success" id="search-name-btn">
Search by Name
</button>
<button
type="button"
class="btn btn-outline-success"
id="search-results-btn"
>
Search by Result
</button>
<button type="button" class="btn btn-danger" id="reset-btn">
Reset All
</button>
</div>
</div>
<div
class="col-sm-10 offset-sm-1 col-md-4 offset-md-1 d-flex justify-content-center"
>
<div id="outputcard"></div>
</div>
</div>
</div>
</section>
<section class="row rounded-lg my-4 bg-light">
<div class="col text-center my-4">
<h3 class="text-main my-4">RESULTS</h3>
<span id="search-msg"></span>
<div class="row">
<div class="col-sm d-flex justify-content-center">
<div id="output-area-left"></div>
</div>
<div class="col-sm d-flex justify-content-center">
<div id="output-area-right"></div>
</div>
</div>
</div>
</section>
</main>
<footer class="container-fluid mt-auto">
<div class="row footer-bottom">
<div class="col text-center my-3">
<a
class="d-inline m-0 p-0 text-decoration-none"
href="index.html"
rel="noopener noreferrer"
>
<img
loading="lazy"
class="millennium-pendant"
src="public/images/item.png"
alt="millennium-pendant"
/>
</a>
<p class="my-3 text-white d-inline">
Yu-Gi-Oh! Forbiden Memories Fusion Calculator © 2020
</p>
<a
class="d-inline m-0 p-0"
href="https://github.com/Solumin/YGO-FM-FusionCalc"
rel="noopener noreferrer"
target="_blank"
>
<img class="gh-logo" src="https://simpleicons.org/icons/github.svg" alt="GitHub" />
</a>
</div>
</div>
</footer>
<script type="text/javascript" src="public/javascripts/awesomplete.min.js"></script>
<script type="text/javascript" src="public/javascripts/jquery-3.5.1.min.js"></script>
<script type="text/javascript" src="public/javascripts/bootstrap.bundle.min.js"></script>
<script type="text/javascript" src="public/javascripts/taffy.js"></script>
<script type="text/javascript" src="data/cards.js"></script>
<script type="text/javascript" src="data/fusions.js"></script>
<script type="text/javascript" src="data/equips.js"></script>
<script type="text/javascript" src="data/results.js"></script>
<script type="text/javascript" src="data/types_and_stars.js"></script>
<script type="text/javascript" src="public/javascripts/fusionSearch.js"></script>
</body>
</html>