-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
38 lines (34 loc) · 885 Bytes
/
popup.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css" type="text/css" />
<title>title</title>
</style>
</head>
<body>
<div id="searchPage">
<div id="inputForm" style="margin-bottom: 5px;">
<input id="userInput" type="text" placeholder="Steam Name">
</div>
</div>
<div id="statsPage">
<div class="content">
<b id="steamName"> </b>
</div>
<div class="content">
<a id="numGames"></a>
<a id="gamesLabel"></a>
</div>
<div class="content">
<a id="winRate"></a>
<a id="winsLabel"></a>
</div>
<div class="content">
<button id="backButton" type="button">Back</button>
</div>
</div>
</body>
<script src="jquery-2.1.0.min.js"></script>
<script src="moment.min.js"></script>
<script src="popup.js"></script>
</html>