This repository has been archived by the owner on Aug 9, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
judging.html
58 lines (54 loc) · 1.92 KB
/
judging.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
---
---
<!DOCTYPE html>
<html lang="en">
<head>
{% include meta.html %}
<title>Judging | Brains@Play</title>
<link rel=icon href=assets/favicons/favicon.ico>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<script src="/js/competition.js" type="text/javascript"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/brainsatplay@0.0.1"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg==" crossorigin="anonymous"></script>
<script src="https://d3js.org/d3.v6.min.js"></script>
</head>
<body>
<!--Navbar-->
{% include nav.html %}
<!--Content-->
<div class="fullscreen" style="padding: 100px;">
<div style="text-align: center;">
<h3>Judging for the 2021 Brains and Games Competition has now closed.</h3>
<p class="small">View the results <a href="/competition/results" class="text">here</a>.</p>
</div>
</div>
<!--{% include profile.html %}-->
<!--<div id="submitted" style="min-height: calc(100vh - 75px)">-->
<!-- <div id="submitted-content-container">-->
<!-- <div id="game" style="display:none;"></div>-->
<!-- <div id="submitted-game-gallery" class="gallery"></div>-->
<!-- </div>-->
<!-- <div id="games-actions">-->
<!-- {% include rubric.html %}-->
<!-- <button id="back" style="display:none;">-->
<!-- Back to Submissions-->
<!-- </button>-->
<!-- </div>-->
<!--</div>-->
</body>
<script>
// Initialize Login Variables
let showLogin=false;
let showSignUp=false;
let currentGame;
let currentCategory;
let allGames = [];
let completedSubmissions = [];
let state = 'submitted'
document.getElementById('goBack').style.display = 'none';
toggleLoginScreen()
</script>
<script>
let game = new brainsatplay.Game();
</script>
</html>