-
Notifications
You must be signed in to change notification settings - Fork 1
/
rsvp.php
45 lines (37 loc) · 1.05 KB
/
rsvp.php
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
<?php
include("php/header.php");
?>
<header id="masthead">
<div class="container">
<div class="one-third column left">
<span class="handletter">MINET</span>
</div>
<div class="two-thirds column right">
<nav>
<ul>
<li class="mob-logo"><a href="#">MINET</a>
<li><a href="index.php">Back Home</a>
</ul>
</nav>
</div>
</div>
</header>
<section class="page">
<div class="container">
<div class="three columns"> </div>
<div class="one-half column">
<h1>RSVP</h1>
<p>Teams that have received their invitations can RSVP for X. Please enter the code you received in your invitations to RSVP.</p>
<form class="big-form" action="checkregister.php" method="post">
<input name="code" required placeholder="Invitation Code" type="text">
<input type="submit" value="Continue">
</form>
</div>
</div>
</section>
<script type="text/javascript">
window.onload = function() { setPage("Registration"); }
</script>
<?php
include("php/footer.php");
?>