31 lines
1.2 KiB
Plaintext
31 lines
1.2 KiB
Plaintext
@model ShoppingCartModel.GiftCardBoxModel
|
|
@if (Model.Display)
|
|
{
|
|
<div class="giftcard-box">
|
|
<div class="title">
|
|
<strong>@T("ShoppingCart.GiftCardCouponCode")</strong>
|
|
</div>
|
|
<div class="hint">@T("ShoppingCart.GiftCardCouponCode.Tooltip")</div>
|
|
<div class="coupon-code">
|
|
<input name="giftcardcouponcode" id="giftcardcouponcode" type="text" class="gift-card-coupon-code" aria-label="@T("ShoppingCart.GiftCardCouponCode.Label")" />
|
|
|
|
<button type="submit" name="applygiftcardcouponcode" id="applygiftcardcouponcode" class="button-2 apply-gift-card-coupon-code-button">@T("ShoppingCart.GiftCardCouponCode.Button")</button>
|
|
</div>
|
|
@if (!string.IsNullOrEmpty(Model.Message))
|
|
{
|
|
<div class="@(Model.IsApplied ? "message-success" : "message-failure")">
|
|
@Model.Message
|
|
</div>
|
|
}
|
|
</div>
|
|
<script asp-location="Footer">
|
|
$(function() {
|
|
$('#giftcardcouponcode').on('keydown', function (event) {
|
|
if (event.keyCode == 13) {
|
|
$('#applygiftcardcouponcode').trigger("click");
|
|
return false;
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
} |