forked from JasonEl1/DLS-Player-Search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 997 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="main.css">
<script src="playerSearch.js" defer></script>
<title class="title">DLS Player Search</title>
</head>
<body>
<div class="title">
<h1>DLS Player Search</h1>
</div>
<div class="inputcontainer">
<div class="nameinput">
<input type="text" placeholder="First Name" id="fnamesearch">
<input type="text" placeholder="Last Name" id="lnamesearch">
</div>
<div class="search">
<button id="searchbtn">Search [ENTER]</button>
</div>
</div>
<div id="count">
<p></p>
</div>
<div id="result">
<p></p>
</div>
<div class="contribute">
<a href="https://github.com/theshinramen/DLS-Files/tree/main/data">Add a missing player</a>
</div>
</body>
</html>