文字修改

webht/payment
candice 2 years ago
parent 0b8e302e88
commit 1af40a150c

@ -25,7 +25,7 @@
<label for="Premium" style="font-size:18px;">
Premium+Transfer+Dinner
<div class="selectionMemo">
US$209
US$199
</div>
<div id='premium_ticket_left'>0 left</div>
</label>
@ -35,7 +35,7 @@
<label for="VIP" style="font-size:18px;">
VIP+Transfer+Dinner
<div class="selectionMemo">
US$179
US$169
</div>
<div id='vip_ticket_left'>0 left</div>
</label>
@ -45,7 +45,7 @@
<label for="Standard" style="font-size:18px;">
Standard+Transfer+Dinner
<div class="selectionMemo">
US$139
US$129
</div>
<div id='standard_ticket_left'>0 left</div>
</label>
@ -66,18 +66,14 @@
</div>
<p style="display: inline-block;">Children under 8 years old enter free; 8-year-olds and above are charged the same as adults. You can buy a
ticket for your child under 8 if you would like her or him to enjoy the same provision.</p>
<div class="payonline_price">Total price: <strong id="totalPriceText">$122</strong></div>
<div class="payonline_price">Total price: <strong id="totalPriceText">$129</strong></div>
<p style="font-size: 22px;"><strong>Book tickets, enjoy explosive hotel prices!</strong></p>
<p>Book <strong>Premium tickets</strong> with us for special rates at <strong>Novotel Chiang Mai (4-star)</strong> Superior Balcony Room (including breakfast) between November 26th and 30th.</p>
<p>Book tickets with us for special rates at <strong>Novotel Chiang Mai (4-star)</strong> Superior Balcony Room (including breakfast) <strong>between November 26th and 30th</strong>.</p>
<p> Rate details (applicable regardless of rooms or nights):<br>
4 or more tickets: Amazing rate of <strong>US$10</strong> PRPN.<br>
2 or 3 tickets: Discounted rate of <strong>US$50</strong> PRPN.<br>
1 ticket: Discounted rate of <strong>US$80</strong> PRPN.</p>
<p> Offer valid <strong>until November 10th</strong>. <br>
If you need a hotel reservation, provide details in the <a href="#request">"Special Requests"</a> section below.
</p>
<p><strong style="color:#ad1818;">US$50</strong> per room per night with <strong>a minimum 4-night stay</strong>. Only 10 places available, first-come, first-served.</p>
<p><strong style="color:#ad1818;">US$80</strong> per room per nightwith a minimum 2-night stay.</p>
<p>If you need a hotel reservation, provide details in the <a href="#request">"Special Requests"</a> section below.
</p>
<p style="margin-top: 50px;"><strong>Please provide correct personal information for your ticket
booking. Double
@ -419,11 +415,11 @@
var currentTarget = event.currentTarget;
var adultNumberValue = parseInt(adultNumberNode.value);
if (currentTarget.value === 'Premium+Transfer+Dinner') {
ticketPrice = 209;
ticketPrice = 199;
} else if (currentTarget.value === 'Standard+Transfer+Dinner') {
ticketPrice = 139;
ticketPrice = 129;
} else if (currentTarget.value === 'VIP+Transfer+Dinner') {
ticketPrice = 179;
ticketPrice = 169;
}
var totalPrice = calcTotalPrice(ticketPrice, adultNumberValue);
totalPriceText.innerText = '$' + totalPrice;

@ -25,7 +25,7 @@
<label for="Premium" style="font-size:18px;">
Premium+Transfer+Dinner
<div class="selectionMemo">
US$209
US$199
</div>
<div id='premium_ticket_left'>0 left</div>
</label>
@ -35,7 +35,7 @@
<label for="VIP" style="font-size:18px;">
VIP+Transfer+Dinner
<div class="selectionMemo">
US$179
US$169
</div>
<div id='vip_ticket_left'>0 left</div>
</label>
@ -45,7 +45,7 @@
<label for="Standard" style="font-size:18px;">
Standard+Transfer+Dinner
<div class="selectionMemo">
US$139
US$129
</div>
<div id='standard_ticket_left'>0 left</div>
</label>
@ -64,18 +64,14 @@
</div>
</div>
<p style="display: inline-block;">Children under 8 years old enter free; 8-year-olds and above are charged the same as adults. You can buy a ticket for your child under 8 if you would like her or him to enjoy the same provision.</p>
<div class="payonline_price">Total price: <strong id="totalPriceText">$122</strong></div>
<div class="payonline_price">Total price: <strong id="totalPriceText">$129</strong></div>
<p style="font-size: 22px;"><strong>Book tickets, enjoy explosive hotel prices!</strong></p>
<p>Book <strong>Premium tickets</strong> with us for special rates at <strong>Novotel Chiang Mai (4-star)</strong> Superior Balcony Room (including breakfast) between November 26th and 30th.</p>
<p>Book tickets with us for special rates at <strong>Novotel Chiang Mai (4-star)</strong> Superior Balcony Room (including breakfast) <strong>between November 26th and 30th</strong>.</p>
<p> Rate details (applicable regardless of rooms or nights):<br>
4 or more tickets: Amazing rate of <strong>US$10</strong> PRPN.<br>
2 or 3 tickets: Discounted rate of <strong>US$50</strong> PRPN.<br>
1 ticket: Discounted rate of <strong>US$80</strong> PRPN.</p>
<p> Offer valid <strong>until November 10th</strong>. <br>
If you need a hotel reservation, provide details in the <a href="#request">"Special Requests"</a> section below.
<p><strong style="color:#ad1818;">US$50</strong> per room per night with <strong>a minimum 4-night stay</strong>. Only 10 places available, first-come, first-served.</p>
<p><strong style="color:#ad1818;">US$80</strong> per room per nightwith a minimum 2-night stay.</p>
<p>If you need a hotel reservation, provide details in the <a href="#request">"Special Requests"</a> section below.
</p>
<p style="margin-top: 50px;"><strong>Please provide correct personal information for your ticket
booking. Double
@ -406,7 +402,7 @@
var totalPriceText = document.getElementById("totalPriceText");
var totalPriceHidden = document.getElementById("totalPriceHidden");
var adultNumberValue = parseInt(adultNumberNode.value);
var ticketPrice = 139;
var ticketPrice = 129;
totalPriceHidden.value = ticketPrice * adultNumberValue;
totalPriceText.innerText = '$' + ticketPrice;
for (var i = 0; i < ticketTypeList.length; i++) {
@ -415,11 +411,11 @@
var currentTarget = event.currentTarget;
var adultNumberValue = parseInt(adultNumberNode.value);
if (currentTarget.value === 'Premium+Transfer+Dinner') {
ticketPrice = 209;
ticketPrice = 199;
} else if (currentTarget.value === 'Standard+Transfer+Dinner') {
ticketPrice = 139;
ticketPrice = 129;
} else if (currentTarget.value === 'VIP+Transfer+Dinner') {
ticketPrice = 179;
ticketPrice = 169;
}
var totalPrice = calcTotalPrice(ticketPrice, adultNumberValue);
totalPriceText.innerText = '$' + totalPrice;

Loading…
Cancel
Save