-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="styles/home.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.css">
<link href="https://fonts.googleapis.com/css?family=Fira+Sans+Condensed" rel="stylesheet">
<title>Summoner Search</title>
<meta name="viewport" content="width=device-width">
</head>
<body>
<nav id="searchContainer">
<form id="searchForm">
<select id="regionSelect" name="region">
<option value="euw">EUW</option>
<option value="na">NA</option>
</select>
<input type="text" id="summonerSearch" name="summonerName" autocomplete="off" placeholder="Summoner name..." required>
<button class="fa fa-search" id="searchButton"></button>
</form>
</nav>
<main id="summonerContainer" class="hidden">
<section id="summonerProfile">
<!-- Information in this div is populated by javascript after searching -->
</section>
<section id="matchDetail" class="hidden">
<a class="fa fa-times" id="closeDetail"></a>
<div id="matchDetailContent">
<!-- Information in this div is populated by javascript after searching -->
</div>
</section>
</main>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="javascript/animation.js"></script>
<script src="javascript/riotApiHandler.js"></script>
<script src="javascript/matchDetailBuilder.js"></script>
<script src="javascript/matchlistBuilder.js"></script>
<script src="javascript/summonerSearch.js"></script>
<script src="javascript/main.js"></script>
</body>
</html>