114 lines
5.3 KiB
PHP
114 lines
5.3 KiB
PHP
<div class="row">
|
|
<div class="col-md-4 order-md-1 mb-4">
|
|
<h4 class="d-flex justify-content-between align-items-center mb-3">
|
|
<span class="text-muted">FAQs</span>
|
|
</h4>
|
|
<ul class="list-group mb-3">
|
|
<li class="list-group-item d-flex justify-content-between lh-condensed">
|
|
<div>
|
|
<h6 class="my-0">How much is the event?</h6>
|
|
<small class="text-muted">
|
|
<table>
|
|
<tr>
|
|
<td>Dinner ticket</td>
|
|
<td>$<?=$_SERVER['EVENT_TICKET_PRICE']?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Table for eight</td>
|
|
<td>$<?=$_SERVER['TABLE_TICKET_PRICE']?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Ticket enhancer (10 pack)</td>
|
|
<td>$<?=$_SERVER['ENHANCER_TICKET_PRICE']?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Childcare</td>
|
|
<td>$<?=$_SERVER['CHILDCARE_PRICE']?> per child</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Cabana</td>
|
|
<td>$<?=$_SERVER['CABANA_PRICE']?></td>
|
|
</tr>
|
|
</table>
|
|
|
|
</small>
|
|
</div>
|
|
</li>
|
|
<li class="list-group-item d-flex justify-content-between lh-condensed">
|
|
<div>
|
|
<h6 class="my-0">What is included with a ticket?</h6>
|
|
<small class="text-muted">Entrance into the event, appetizers, dessert, and dinner is
|
|
included. Ticket
|
|
enhancers may be purchased for drinks and other onsite activities.
|
|
</small>
|
|
</div>
|
|
</li>
|
|
|
|
<li class="list-group-item d-flex justify-content-between lh-condensed">
|
|
<div>
|
|
<h6 class="my-0">Is anything included with the table purchase?</h6>
|
|
<small class="text-muted">Your party will enjoy two bottles of complimentary wine.</small>
|
|
</div>
|
|
</li>
|
|
|
|
|
|
<li class="list-group-item d-flex justify-content-between lh-condensed">
|
|
<div>
|
|
<h6 class="my-0">What is a ticket enhancer?</h6>
|
|
<small class="text-muted">Ticket enhancers are used for drinks, the egg pull, and the wine
|
|
pull while at the event. It is sold as a 10 pack of tickets.<br/>
|
|
<br/>Drinks - 4 tickets
|
|
<br/>Wine Pull - 3 tickets
|
|
<br/>Egg Pull - 2 tickets
|
|
</small>
|
|
</div>
|
|
</li>
|
|
<li class="list-group-item d-flex justify-content-between lh-condensed">
|
|
<div>
|
|
<h6 class="my-0">Is childcare offered?</h6>
|
|
<small class="text-muted">Only to NCM enrolled students. Childcare will include pizza and
|
|
dessert.
|
|
</small>
|
|
</div>
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
<div class="col-md-8 order-md-2">
|
|
<h4 class="mb-3">Your Order</h4>
|
|
<form class="needs-validation" novalidate method="POST">
|
|
|
|
<div class="mb-3">
|
|
<label for="eventTickets">How many tickets would you like to purchase?</label>
|
|
<p class="text-muted">$<?=$_SERVER['EVENT_TICKET_PRICE']?> each or purchase eight tickets to
|
|
reserve a table for $<?=$_SERVER['TABLE_TICKET_PRICE']?></p>
|
|
<div class="input-group mb-2">
|
|
<div class="input-group-prepend">
|
|
<div class="input-group-text">Tickets</div>
|
|
</div>
|
|
<input type="number" class="form-control" id="eventTicketQty" name="eventTicketQty" value="1">
|
|
</div>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="enhancerTickets">How many packs of ticket enhancers would you like?</label>
|
|
<p class="text-muted">$<?=$_SERVER['ENHANCER_TICKET_PRICE']?> per pack. Sold in packs of 10 tickets.</p>
|
|
<input type="number" class="form-control" id="ticketEnhancerQty" name="ticketEnhancerQty">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="enhancerTickets">Would you like to make a one-time contribution to support our mission
|
|
in teaching independence, mastery of self, and the environment?</label>
|
|
<div class="input-group mb-2">
|
|
<div class="input-group-prepend">
|
|
<div class="input-group-text">$</div>
|
|
</div>
|
|
<input name="additionalContribution" type="text" class="form-control" id="inlineFormInputGroup">
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<hr class="mb-4">
|
|
<button class="btn btn-primary btn-lg btn-block" type="submit">Continue to checkout</button>
|
|
</form>
|
|
</div>
|
|
</div>
|