-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (29 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Start Page</title>
</head>
<body>
<h1>Welcome</h1>
<button class="menu" id="reconDB" onclick="location.href='recon.html';">reconDB</button>
<button class="menu" id="make-dump">submit a recon</button>
<br><br>
<div id="show-dump" style="display: none;">
<input type="text" name="" id="fps" placeholder="fps">
<input type="text" name="" id="solver" placeholder="solver">
<input type="text" name="" id="reconstructor" placeholder="reconstructor">
<input type="text" name="" id="competition" placeholder="competition">
<input type="text" name="" id="event" placeholder="event">
<br><br>
<textarea name="" id="cstimer-dump" cols="100" rows="12" placeholder="cstimer-dump"></textarea>
<br><br>
<button id="submit-cstimer-dump">submit</button>
<button id="reset">reset</button>
<br><br>
<div id="link-gen"></div>
</div>
<script src="script.js"></script>
</body>
</html>