-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
70 lines (57 loc) · 2.29 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
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HackBoard - BlockHack 2023</title>
<link rel="stylesheet" href="styles.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/ethers/6.3.0/ethers.umd.min.js" charset="utf-8" type="text/javascript"></script>
<script src="script.js" defer></script>
</head>
<body>
<!-- Countdown Timer -->
<section class="countdown">
<h1 style="font-size: xx-large;">Welcome<a id="UserTeamName"></a>!</h1>
<h1 style="font-size: xx-large;">HackBoard - BlockHack 2023 (Toronto)</h1>
<div style="font-size: 45px;" id="timer"></div>
<button onclick="Login()" id="metamaskButton">Sign in (Gnosis)</button>
<button onclick="addGnosisChainToMetaMask()">Add ETC to Metamask</button>
<br>
<a href="/PredictionMarkets.html"><button>Prediction Markets</button></a>
<a href="/MarketCap"><button>Team Marketcaps</button></a>
</section>
<section id="Table" class="tokens">
<h1>Registered HackBoard Teams</h1>
<table id="Registry">
<thead>
<tr>
<th>Team</th>
<th>Description</th>
</tr>
</thead>
<tbody id="temprow">
<tr>
<td>Login to view</td>
<td>Login to view</td>
<td>Login to view</td>
<td>Login to view</td>
<td>Login to view</td>
</tr>
</tbody>
</table>
<br>
<a href="/Signup/signup.html"><button>Register your team</button></a>
</section>
<!-- Team Tokens & MarketCaps -->
<!-- Info Tab -->
<section class="info-tab">
<h1>Hackathon Schedule</h1>
<br>
<h1>What is this?</h1>
<div>
<!-- You can replace this with your desired content -->
We're HackBoard, an EthGlobalNYC 2023 hackathon team trying to augment the inter-team dynamic at the hackathon, for better collaboration, brainstorming and social connection. Now expanding into other hackathons, we can successfuly say the concept stook!
</div>
</section>
</body>
</html>