thank you page update

This commit is contained in:
Chris Smith
2019-03-08 13:50:52 -06:00
parent cbf48a859e
commit a5a4361837

View File

@@ -7,7 +7,7 @@
</div> </div>
<div class="col-md-12 mb-4"> <div class="col-md-12 mb-4">
<h4 class="d-flex justify-content-between align-items-center mb-3"> <h4 class="d-flex justify-content-between align-items-center mb-3">
<span class="text-muted">Receipt #<?=$order->id?></span> <span class="text-muted">Receipt #<?= $order->id ?></span>
</h4> </h4>
<?php <?php
if ($order->payment_type == 1) { ?> if ($order->payment_type == 1) { ?>
@@ -20,21 +20,32 @@
PO Box 660<br/> PO Box 660<br/>
Mukwonago, WI 53149 Mukwonago, WI 53149
</p> </p>
<?php }else {?> <?php } else { ?>
<p>Your payment will be processed by our payment processor Stripe <small>(<?=$order->stripe_token?>)</small></p> <p>Your payment will be processed by our payment processor Stripe
<small>(Stripe # <?= $order->stripe_token ?>)</small>
</p>
<?php } ?> <?php } ?>
<p>
Purchased by:<br/>
<?= $order->first_name . ' ' . $order->last_name . ' (' . $order->email . ')' ?> <br/>
<?= $order->address ?><br/>
<?= $order->city . ', ' . $order->state . ' ' . $order->zip ?><br/>
</p>
<ul class="list-group mb-3"> <ul class="list-group mb-3">
<?=shoppingCartLineItem('Dinner', $order->ticket_cents, $order->ticket_quantity . ' x tickets');?> <?= shoppingCartLineItem('Dinner', $order->ticket_cents, $order->ticket_quantity . ' x tickets'); ?>
<?=shoppingCartLineItem('Cabana', $order->cabana_cents);?> <?= shoppingCartLineItem('Cabana', $order->cabana_cents); ?>
<?=shoppingCartLineItem('Ticket Enhancers', $order->enhancer_cents, $order->enhancer_quantity . ' x enhancers');?> <?= shoppingCartLineItem('Ticket Enhancers', $order->enhancer_cents, $order->enhancer_quantity . ' x enhancers'); ?>
<?=shoppingCartLineItem('Add\'l Contribution', $order->additional_cents);?> <?= shoppingCartLineItem('Add\'l Contribution', $order->additional_cents); ?>
<?=shoppingCartTotal($order->total_cents);?> <?= shoppingCartTotal($order->total_cents); ?>
</ul> </ul>
<p>We will send you an email notification before the event as a reminder. If you purchased additional tickets for your <p>We will send you an email notification before the event as a reminder. If you purchased additional
guests you can <a href="/manage/<?=$order->uuid?>">manage your guests</a>. If you have any questions please email <a href="mailto:deepa@nciw.org">deepa@nciw.org</a></p> tickets for your
<p class="text-center"><a href="/manage/<?=$order->uuid?>" class="btn btn-lg btn-success">Manage Guests</a></p> guests you can <a href="/manage/<?= $order->uuid ?>">manage your guests</a>. If you have any questions
please email <a href="mailto:deepa@nciw.org">deepa@nciw.org</a></p>
<p class="text-center"><a href="/manage/<?= $order->uuid ?>" class="btn btn-lg btn-success">Manage
Guests</a></p>
</div> </div>
</div> </div>