-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrequests.php
41 lines (36 loc) · 2.19 KB
/
requests.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
<?php $pageTitle = "Appearance Requests"; ?>
<!DOCTYPE html>
<html>
<?php require "partials/head.php" ?>
<body>
<?php require "partials/public-header.php" ?>
<div class="container">
<h2 class="mb-3">Appearance Requests</h2>
<p>As part of our duties, the Ramblin' Reck Club takes the Reck and our inflatable Buzz mascot to events both on- and off-campus. Please select the mascot you would like to request an appearance from.</p>
<div class="row mb-2">
<div class="col-md-6">
<div class="card flex-md-row mb-4 box-shadow h-md-250">
<img class="card-img-right img-fluid flex-auto d-none d-lg-block" src="/img/promo/2017-gameday-rideout.jpg" data-holder-rendered="true" style="width: 200px; height: 250px;">
<div class="card-body d-flex flex-column align-items-start">
<h3 class="mb-1 text-dark">The Ramblin' Reck</h3>
<p class="card-text mb-auto">When it is not being used for official Georgia Tech business and events, the Ramblin’ Reck is able to appear at events for Georgia Tech alumni and fans.</p>
<a href="https://forms.gle/rCfXyiBLVtgfp9YS7" class="btn btn-outline-primary mt-2">Submit a Reck request</a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card flex-md-row mb-4 box-shadow h-md-250">
<img class="card-img-right img-fluid flex-auto d-none d-lg-block" src="/img/promo/big-buzz.jpg" data-holder-rendered="true" style="width: 200px; height: 250px;">
<div class="card-body d-flex flex-column align-items-start">
<h3 class="mb-1 text-dark">Big Buzz</h3>
<p class="card-text mb-auto">If you would like to have Big Buzz appear at your event, please send in a request through the form below.</p>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSf_BpENGaGoUHUWkO6Ct7SAgJ5kUuFhUGH5vS6d-buwtfOf1w/viewform" class="btn btn-outline-secondary mt-2">Submit a Big Buzz request</a>
</div>
</div>
</div>
</div>
</div>
<?php require "partials/footer.php" ?>
<?php require "partials/scripts.php" ?>
</body>
</html>