-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeneral.html
More file actions
36 lines (29 loc) · 1.13 KB
/
general.html
File metadata and controls
36 lines (29 loc) · 1.13 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Team Infomatic - Team Recap</title>
<script src="fetch-interactor.js?v=7"></script>
<link rel="icon" type="image/x-icon" href="/resources/oh-my-lordy.png">
<link rel="stylesheet" href="main.css?v=2" />
</head>
<body class="stats">
<ul>
<li>
<img src="resources/oh-my-lordy.png" alt="Logo of 1640">
</li>
<li><a href="index.html" class="navtext">Specific Stats</a></li>
<li class="active"><a href="general.html" class="navtext">Team Recap</a></li>
<li><a href="download.html" class="navtext">Download Stats</a></li>
<li><a href="settings.html" class="navtext">Settings</a></li>
<li><a href="https://github.com/SpeedSlicer/Team-Infomatic" class="navtext">Github</a></li>
</ul>
<h2 class="heading">Team Recap</h2>
<input id="team-number" placeholder="Enter your team number"></input>
<button id="submit-button" onclick="getGeneralData(document.getElementById('team-number').value)">
Submit
</button>
<div id="info-gen"></div>
</body>
</html>