-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathregistration.html
78 lines (70 loc) · 5.39 KB
/
registration.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
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="css/main.css">
<!-- Needs to be run on a server: python -m SimpleHTTPServer (#### > 1024, default 8000) -->
<!-- To kill existing process on port ####: sudo lsof -t -i tcp:#### | xargs kill -9 -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script>
$('head').load('header.html', function() {
// Page-specific information
document.title = "Tournament Registration - Princeton University Science Olympiad Invitational"
document.querySelector("#canonicalLink").setAttribute("href", "/registration")
document.querySelector("#title_meta").setAttribute("content", "Tournament Information | Registration")
document.querySelector("#description").setAttribute("content", "Register for the PUSO invitational tournament.")
});
// wrapped in function so executes after the page is loaded
$(function(){
$("nav").load("navbar.html");
$("footer").load("footer.html");
});
</script>
</head>
<body>
<!-- Imported navbar -->
<nav class="navbar navbar-inverse navbar-static-top"></nav>
<div class="container content">
<div class="row">
<div class="col-lg-12">
<h1 class="section-title">Tournament Registration</h1>
<hr>
<h5>Registration is now open!</h5>
<h5>The link to the registration form can be found
<a href="https://docs.google.com/forms/d/e/1FAIpQLScajoheqw3GNV6fivLpfrFFmFRSiegOOjPvLFMx093YwxUjLg/closedform">here</a>.</h5>
<h2 class="section-subtitle">Registration</h2>
<li>Each attending school must be a registered member of their state Science Olympiad organization and have paid all applicable membership fees prior to tournament day.</li>
<li>Limit of 48 teams on a first-come first-serve basis. If we can confirm more space we will expand this to 56 teams. </li>
<li>The first 8 schools to successfully register two teams will receive two slots each in the tournament. Subsequent schools to successfully register will receive one slot each in the tournament. </li>
<li>Teams will be placed on the waitlist in chronological order after the registration limit has been reached. </li>
<li>Head coaches will receive email confirmation upon submitting the registration form. If confirmation has not been received within 48 hours, please email us at <a href="mailto:[email protected]">[email protected]</a>.</li>
<!-- <li>A $100 penalty will be imposed for every confirmed team that withdraws. There is no fee otherwise for registering and/or participating in the tournament.</li> -->
<!-- <li>Confirmed teams that withdraw after the registration deadline will be penalized the following year if they try to register again and are placed on the waitlist (i.e. your spot on the waitlist will be lowered).</li> -->
<li>A $100 penalty will be imposed for every confirmed team that withdraws after <b>Tuesday, November 29th, 2022</b> unless the withdrawal is due to changes in their high school's coronavirus guidelines, in which case there will be no penalty. There is no fee otherwise for registering and/or participating in the tournament.</li>
<ul class = "sub-bullet">
<li>This system is in place to ensure that teams admitted off the waitlist have adequate notice in advance. It is also to encourage general commitment to attending our tournament.</li>
</ul>
<li>Please mail all checks to the below address:</li>
</ul>
<div class="address">
<p class="address">Princeton University Science Olympiad</p>
<p class="address">attn. Kenny Poor</p>
<p class="address">4409 Frist Center</p>
<p class="address">Princeton University</p>
<p class="address">Princeton, NJ 08544</p>
</div>
<br>
<!-- <p>If the format of the tournament changes from in-person to virtual, teams will be free to withdraw without incurring a penalty. We will also open registration again for teams to participate in the virtual tournament.</p>-->
<p>Be sure to read the <a href="info.html">Competition Policies</a> prior to registering. The registration procedures detailed above are subject to minor revision.</p>
</div>
</div>
</div>
<!-- Imported Footer -->
<footer class="footer-inverse"></footer>
<!-- Latest compiled and minified JavaScript: must load JQuery before Bootstrap -->
<!-- <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script> -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="https://use.fontawesome.com/be16867854.js"></script>
</body>
</html>