<script scope="backend">
var promo = request.query.promo;
if (promo === 'VIP50') {
setVariable('discount', '50%');
setVariable('show_promo_banner', true);
session.set('applied_promo', promo);
} else if (promo === 'WELCOME20') {
setVariable('discount', '20%');
setVariable('show_promo_banner', true);
session.set('applied_promo', promo);
} else {
setVariable('discount', '0%');
setVariable('show_promo_banner', false);
}
</script>
@if(var.show_promo_banner)
<div class="promo-banner">
Use code for {{ var.discount }} off!
</div>
@endif