</div>

		<?php 
    } else {
        ?>

			<h1>
				View Murder Mystery Entry
				<a href="?page=<?php 
        echo $_REQUEST['page'];
        ?>
" class="page-title-action">
					Back
				</a>
				<a href="?page=outspokane_edit_entry&form=murder_mystery&id=<?php 
        echo $entry->getId();
        ?>
" class="page-title-action">
					Edit
				</a>
				<a href="#" class="page-title-action" id="pride-delete-entry" data-form="murder_mystery" data-id="<?php 
        echo $entry->getId();
        ?>
">
					Delete
				</a>
			</h1>

			<div class="row">
				<div class="col-md-7">
	<a name="confirmation-payment"></a>
	<h2>Confirmation and Payment</h2>

	<?php 
    if (isset($_POST['form'])) {
        ?>
		<div class="alert alert-danger">
			There was a problem processing your credit card. Please try again.
		</div>
	<?php 
    }
    ?>

	<?php 
    if ($entry->getId() !== NULL && $entry->getCreatedAt() == $timestamp) {
        ?>

		<?php 
        if ($entry->getPaidAt() !== NULL && $entry->getAmountDue() == 0) {
            ?>
			<div class="alert alert-success">
				Thank you for your payment!
			</div>
		<?php 
        }
        ?>

		<table class="table">
			<tr>
				<th>Order Date:</th>
        $entry = new \OutSpokane\MurderMysteryEntry($_GET['id']);
}
?>

<div class="wrap">

	<h1>
		Edit <?php 
echo $form_title;
?>
 Entry
		<a href="?page=<?php 
echo $back_page;
?>
&action=view&id=<?php 
echo $entry->getId();
?>
" class="page-title-action">
			Back
		</a>
	</h1>

	<?php 
if ($entry->getId() === NULL) {
    ?>

		<p>
			The entry you are trying to edit is currently unavailable.
		</p>

	<?php