-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolve.html
49 lines (45 loc) · 1.54 KB
/
solve.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Submit Recon</title>
<link rel="stylesheet" href="global.css">
</head>
<body>
<div class="buttons">
<!-- You can add buttons here if needed -->
</div>
<div class="heading">
<h3>Submit Recon</h3>
</div>
<div class="fps-and-time">
<label class="label" for="fps">fps:</label>
<input type="text" class="input-text" id="fps">
<br>
<label class="label" for="time">time:</label>
<input type="text" class="input-text" id="time">
</div>
<div class="scramble">
<h3 id="scramble"></h3>
</div>
<div class="input">
<textarea class="input-textarea" id="reconstruction" cols="30" rows="10" placeholder="recon"></textarea>
<textarea class="input-textarea" id="splits" cols="30" rows="10" placeholder="splits"></textarea>
<br><br>
<input class="button submitBTN" type="button" value="submit" id="submit-button">
<input type="button" class="button saveBTN" id="save" value="save" style="display: none;">
<br><br>
</div>
<div class="table">
<table id="table" border="2px"></table>
</div>
<div class="iframe">
<br>
<iframe src="https://alg.cubing.net/?alg=_&setup=_" frameborder="0" id="alg.cubing.net"></iframe>
<br>
<a class="link" id="link">alg.cubing.net link</a>
</div>
<script src="solve.js"></script>
</body>
</html>