-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (82 loc) · 2.98 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Arctic Overlay</title>
<!-- load jquery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- load google fonts -->
<link href="https://fonts.googleapis.com/css2?family=Red+Hat+Mono:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Mohave:wght@700&display=swap" rel="stylesheet">
<!-- load font awesome -->
<script src="https://kit.fontawesome.com/c20de8d6f8.js" crossorigin="anonymous"></script>
<!-- load adobe fonts -->
<link rel="stylesheet" href="https://use.typekit.net/yav3fwc.css"/>
<!-- load our custom css -->
<link rel="stylesheet" href="styles.css" />
</head>
<header>
<img id="logo" src='./assets/icon.png'/>
<h1 id="title">ARCTIC OVERLAY</h1>
<span id="settings-button-container" class="header-button"><i id="settings-button" class="fas fa-cog"></i></span>
<i id="exit-button" class="fas fa-times header-button"></i>
</header>
<body class="dark-mode">
<div id="misc-footer" class="dark-mode">
<p>
<label for="mode-select">Stats Mode:</label>
<select name="mode-select" id="mode-select">
<option value="overall" id="overall">Overall</option>
<option value="solo" id="solo">Solo</option>
<option value="doubles" id="doubles">Doubles</option>
<option value="threes" id="threes">Threes</option>
<option value="fours" id="fours">Fours</option>
<option value="fourvfours" id="fourvfours">4v4s</option>
</select>
</p>
<form id="lookup-form">
<label for="manual-lookup">Manual Player Lookup: </label>
<input type="text" name="manual-lookup" id="manual-lookup" />
<input type="submit" id="lookup-submit" />
</form>
</div>
<table id="main-table">
<tr>
<th class="playerName">PLAYER</th>
<th>TAG</th>
<th>WS</th>
<th>FKDR</th>
<th>FINAL</th>
<th>WLR</th>
<th>BBLR</th>
</tr>
</table>
<br/>
<div id="notice">
<h2 id="notice-text"></h2>
</div>
<div id="settings">
<h2>SETTINGS</h2>
<p>
<label for="client-select">Choose a client:</label>
<select name="client-select" id="client-select">
<option value="vanilla" id="vanilla">Vanilla/Labymod</option>
<option value="lunar" id="lunar">Lunar Client</option>
<option value="badlion" id="badlion">Badlion Client</option>
</select>
</p>
<!-- <br/> -->
<p>
<input type="checkbox" id="autowho" name="autowho"/>
<label for="autowho">Autowho</label>
</p>
<p>
<input type="checkbox" id="statColor" name="statColor"/>
<label for="statColor">Color the whole player's stats instead of individual stats</label>
</p>
</div>
<!-- <button id="start-reading">Start reading log</button> -->
<script src="src/renderer.js"></script>
</body>
</html>