-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (55 loc) · 2.44 KB
/
index.html
File metadata and controls
65 lines (55 loc) · 2.44 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
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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=yes">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" />
<title>CodeForces Virtual Contest Selector</title>
</head>
<body>
<div class="ui stackable padded grid" style="height: 100vh">
<div class="seven wide column">
<div class="ui fluid action big input">
<input type="text" placeholder="Handle..." id="handleInp">
<button class="ui button" onclick="addHandle()">Add</button>
</div>
<div style="overflow-y: scroll; display: block; max-height: 85vh; margin-top: 2vh">
<table class="ui fluid unstackable striped table" id="handleTable">
<thead>
<tr>
<th style="width: 75%">Handle</th>
<th>Rating</th>
<th style="width: 10%"></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<div class="nine wide black column">
<div class="four ui buttons">
<button class="ui big inverted button" id="Div. 1" onclick="SC(this.id)">Div 1</button>
<button class="ui big inverted button" id="Div. 2" onclick="SC(this.id)">Div 2</button>
<button class="ui big inverted button" id="Div. 3" onclick="SC(this.id)">Div 3</button>
<button class="ui big inverted button green" onclick="Show()">Show!</button>
</div>
<div style="overflow-y: scroll; display: block; max-height: 85vh; margin-top: 2vh">
<table class="ui fluid striped table inverted" id="contestTable">
<thead>
<tr>
<th style="width: 80%"><b>Name</b></th>
<th><b>Id</b></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
<script src="scripts.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.slim.min.js"></script>
</body>
</html>