-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (57 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>OSN Informatika</title>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"
/>
<link rel="stylesheet" href="scoreboard.css" />
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="config.js"></script>
<script src="scoreboard.js"></script>
<script>
$(document).ready(function () {
fetchScoreboard("JIDCONTxxx");
});
</script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="page-header">
<img src="osn.png" style="float: left; height: 70px; width: 70px; margin-top: 20px; margin-right: 15px;"/>
<div style="float: left">
<h1>OSN Bidang Informatika</h1>
<p>Daring</p>
</div>
<img src="ia-toki.png" style="float: right; height: 70px; margin-top: 20px;"/>
<div class="clearfix"></div>
</div>
<h4>Hari 1</h4>
<div class="alert alert-warning" role="alert">
Belum hasil resmi. Hanya menampilkan hasil <b>4 jam pertama</b> setiap harinya.
</div>
<div class="progress">
<div id="progress-bar" class="progress-bar" role="progressbar">
</div>
</div>
<table class="table table-striped table-bordered">
<thead>
<tr id="headers">
<th class="col-rank">#</th>
<th>Username</th>
<th>Nama</th>
<th class="col-school">Sekolah</th>
<th class="col-province">Provinsi</th>
<th class="col-score">Total</th>
</tr>
</thead>
<tbody id="entries"></tbody>
</table>
</div>
</div>
</div>
</body>
</html>