-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecruitment.html
More file actions
204 lines (183 loc) · 9.32 KB
/
recruitment.html
File metadata and controls
204 lines (183 loc) · 9.32 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Join UMBC Rugby - Recruitment</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="assets/images/rugbylogo.png" type="image/png">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
</head>
<body>
<!-- Skip Link -->
<a href="#main-content" class="skip-link">Skip to main content</a>
<!-- Back to Top Button -->
<button id="back-to-top" class="back-to-top" aria-label="Back to top">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M18 15l-6-6-6 6"/>
</svg>
</button>
<!-- Navigation -->
<nav class="nav" id="nav">
<div class="nav__container">
<a href="index.html" class="nav__logo">
<img src="assets/images/rugbylogo.png" alt="UMBC Rugby">
</a>
<ul class="nav__menu">
<li><a href="index.html" class="nav__link">Home</a></li>
<li><a href="roster.html" class="nav__link">Roster</a></li>
<li><a href="schedule.html" class="nav__link">Schedule</a></li>
<li><a href="rugby-ready.html" class="nav__link">Rugby Ready</a></li>
<li><a href="recruitment.html" class="nav__link active">Recruitment</a></li>
<li><a href="alumni.html" class="nav__link">Alumni</a></li>
<li><a href="https://www.steamrollerrugby.com/search.php?search_query=umbc§ion=product" target="_blank" rel="noopener" class="nav__link">Shop</a></li>
<li><a href="donate.html" class="nav__link">Donate</a></li>
<li><a href="faq.html" class="nav__link">FAQs</a></li>
</ul>
<div class="nav__cta">
<a href="recruitment.html" class="btn btn--primary btn--sm">Join Team</a>
</div>
<button class="nav__toggle" id="nav-toggle" aria-label="Toggle menu" aria-expanded="false">
<span class="nav__toggle-line"></span>
<span class="nav__toggle-line"></span>
<span class="nav__toggle-line"></span>
</button>
</div>
<div class="nav__mobile-menu" id="mobile-menu">
<a href="index.html" class="nav__link">Home</a>
<a href="roster.html" class="nav__link">Roster</a>
<a href="schedule.html" class="nav__link">Schedule</a>
<a href="rugby-ready.html" class="nav__link">Rugby Ready</a>
<a href="recruitment.html" class="nav__link active">Recruitment</a>
<a href="alumni.html" class="nav__link">Alumni</a>
<a href="https://www.steamrollerrugby.com/search.php?search_query=umbc§ion=product" target="_blank" rel="noopener" class="nav__link">Shop</a>
<a href="donate.html" class="nav__link">Donate</a>
<a href="faq.html" class="nav__link">FAQs</a>
<div class="nav__mobile-cta">
<a href="recruitment.html" class="btn btn--primary">Join The Team</a>
</div>
</div>
</nav>
<!-- Page Hero -->
<header class="page-hero">
<img src="assets/images/rugby11.jpg" alt="UMBC Rugby Recruitment" class="page-hero__image">
<div class="page-hero__overlay"></div>
<div class="page-hero__content">
<h1 class="page-hero__title">Join UMBC Rugby</h1>
<p class="page-hero__subtitle">The only contact sport at UMBC - Start your journey today</p>
</div>
</header>
<!-- Main Content -->
<main id="main-content">
<!-- Recruitment Form Section -->
<section class="section">
<div class="container">
<div class="section-header text-center">
<span class="section-label">Sign Up</span>
<h2 class="section-title">Ready to Join?</h2>
<p class="section-subtitle">Take the first step towards becoming part of UMBC Rugby's legacy</p>
</div>
<form id="recruitment-form" class="form" data-animate action="https://formspree.io/f/xqaagkjn" method="POST">
<div class="form__grid">
<div class="form__group">
<label for="name" class="form__label">Full Name *</label>
<input type="text" id="name" name="name" class="form__input" placeholder="Enter your full name" required>
</div>
<div class="form__group">
<label for="email" class="form__label">Email Address *</label>
<input type="email" id="email" name="email" class="form__input" placeholder="Enter your email address" required>
</div>
<div class="form__group">
<label for="phone" class="form__label">Phone Number *</label>
<input type="tel" id="phone" name="phone" class="form__input" placeholder="Enter your phone number" required>
</div>
<div class="form__group">
<label for="year" class="form__label">Academic Year</label>
<input type="text" id="year" name="year" class="form__input" placeholder="e.g., Freshman, Sophomore, etc.">
</div>
<div class="form__group form__group--full">
<label for="how-found" class="form__label">How did you find out about UMBC Rugby? *</label>
<select id="how-found" name="how-found" class="form__select" required>
<option value="">Select an option...</option>
<option value="friend">Friend or teammate</option>
<option value="social-media">Social media</option>
<option value="website">UMBC website</option>
<option value="campus-event">Campus event/fair</option>
<option value="flyer">Flyer or poster</option>
<option value="class">In class</option>
<option value="coach-contact">Coach contacted me</option>
<option value="other">Other</option>
</select>
</div>
<div class="form__group form__group--full">
<label for="athletic-experience" class="form__label">Athletic Experience</label>
<textarea id="athletic-experience" name="athletic-experience" class="form__textarea" rows="4" placeholder="Tell us about your athletic background, sports you've played, fitness level, etc."></textarea>
</div>
<div class="form__group form__group--full">
<label for="rugby-experience" class="form__label">Rugby Experience</label>
<textarea id="rugby-experience" name="rugby-experience" class="form__textarea" rows="4" placeholder="Tell us about any previous rugby experience (if none, just write 'None')"></textarea>
</div>
</div>
<div class="form__actions">
<button type="submit" class="btn btn--primary btn--large">Join the Team</button>
</div>
</form>
<div class="form__success" id="success-message">
<h3>Welcome to the Team!</h3>
<p>Thank you for your interest in UMBC Rugby. We'll be in touch soon with more information.</p>
</div>
</div>
</section>
<!-- Contact Info Section -->
<section class="section">
<div class="container">
<div class="section-header text-center">
<span class="section-label">Contact</span>
<h2 class="section-title">Get In Touch</h2>
<p class="section-subtitle">Have questions? Want to learn more? We're here to help.</p>
</div>
<div class="contact-grid">
<div class="contact-card" data-animate>
<div class="contact-card__icon">EMAIL</div>
<h3 class="contact-card__title">Email Us</h3>
<p class="contact-card__text">umbcmensrugby@gmail.com</p>
</div>
<div class="contact-card" data-animate>
<div class="contact-card__icon">SOCIAL</div>
<h3 class="contact-card__title">Follow Us</h3>
<p class="contact-card__text">@umbcmensrugby</p>
</div>
<div class="contact-card" data-animate>
<div class="contact-card__icon">VISIT</div>
<h3 class="contact-card__title">Visit Practice</h3>
<p class="contact-card__text">Walker Field, UMBC<br>Tue/Thu/Fri 4-6 PM</p>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer__logos">
<img src="assets/images/rugbylogo.png" alt="UMBC Rugby Logo" class="footer__logo">
<img src="assets/images/ncr.png" alt="NCR Logo" class="footer__logo">
<img src="assets/images/umbclogo.png" alt="UMBC Logo" class="footer__logo">
</div>
<nav class="footer__nav">
<a href="index.html" class="footer__link">Home</a>
<a href="roster.html" class="footer__link">Roster</a>
<a href="schedule.html" class="footer__link">Schedule</a>
<a href="rugby-ready.html" class="footer__link">Rugby Ready</a>
<a href="recruitment.html" class="footer__link">Recruitment</a>
<a href="alumni.html" class="footer__link">Alumni</a>
<a href="https://www.steamrollerrugby.com/search.php?search_query=umbc§ion=product" target="_blank" rel="noopener" class="footer__link">Shop</a>
<a href="donate.html" class="footer__link">Donate</a>
<a href="faq.html" class="footer__link">FAQs</a>
</nav>
<p class="footer__copyright">© 2025 UMBC Rugby Club. Web Design by Leon Tang.</p>
</div>
</footer>
<script src="js/scripts.js"></script>
</body>
</html>