| Server IP : 3.96.16.70 / Your IP : 216.73.216.15 Web Server : Apache System : Linux ip-172-31-26-103.ca-central-1.compute.internal 6.1.163-186.299.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Feb 24 16:35:42 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/dumpchup.ca/behaviour-taco-bell/app/view/ |
Upload File : |
<?php include ('include/top.php'); ?>
<script>
<?php if (isset($_SESSION['selection'])) : ?>
var current_selection = <?php echo $_SESSION['selection']; ?>;
<?php else: ?>
var current_selection = 1;
<?php endif; ?>
</script>
<div id="page-content">
<h3>Choose a Note</h3>
<div id="notes">
<div class="carousel" id="carousel">
<div class="carousel-track">
<?php foreach ($notes as $note) : ?>
<div class="carousel-item">
<div id="n<?php echo $note['id']; ?>" class="note" style="background-color: <?php echo $note['background']; ?>">
<p><?php echo $note['reason']; ?></p>
</div>
</div>
<?php endforeach; ?>
</div>
<div class="arrows">
<div id="prevBtn"><img src="<?php echo img_url('arrow.png'); ?>" /></div>
<div id="nextBtn"><img src="<?php echo img_url('arrow.png'); ?>" /></div>
</div>
</div>
</div>
<p>Pick your breakup vibe,<br>then make it official with your signature.</p>
<div class="button secondary">Back</div>
<div class="button">Select Note</div>
</div>
<?php include ('include/bottom.php'); ?>