diff options
-rw-r--r-- | website/resources/js/order-license.js | 2 | ||||
-rw-r--r-- | website/templates/order-license.html | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/website/resources/js/order-license.js b/website/resources/js/order-license.js index b2842456..21550f34 100644 --- a/website/resources/js/order-license.js +++ b/website/resources/js/order-license.js @@ -15,7 +15,7 @@ $("#locationType_eu").toggle(locationType === "eu"); $("#locationType_other").toggle(locationType === "other"); $("#paymentMethod_iban").toggle(locationType === "eu"); - if ($("#paymentMethod_iban input").is(":checked") && locationType !== "eu") $("#paymentMethod_payoneer input").prop("checked", true); + if ($("#paymentMethod_iban input").is(":checked") && locationType !== "eu") $("#paymentMethod_stripe input").prop("checked", true); if ($("#paymentMethod_intl input").is(":checked") && locationType === "eu") $("#paymentMethod_iban input").prop("checked", true); $("#paymentMethod_intl").toggle(locationType !== "eu"); } diff --git a/website/templates/order-license.html b/website/templates/order-license.html index 818c27f3..c3f52cef 100644 --- a/website/templates/order-license.html +++ b/website/templates/order-license.html @@ -89,7 +89,7 @@ <div class="form-check"> <label class="form-check-label"> <input type="radio" class="form-check-input locationType" name="locationType" value="eu" checked="checked" /> - We are based in the Europe + We are based in Europe </label> </div> <div class="form-check"> @@ -130,13 +130,13 @@ <div class="form-check" hidden="hidden" id="paymentMethod_intl"> <label class="form-check-label"> <input type="radio" class="form-check-input" name="paymentMethod" value="intl" /> - Pay via international bank transfer + Pay via international bank transfer (not suggested for bills less than €500,-) </label> </div> <div class="form-check"> - <label class="form-check-label" id="paymentMethod_payoneer"> - <input type="radio" class="form-check-input" name="paymentMethod" value="payoneer" /> - Pay with Payoneer + <label class="form-check-label" id="paymentMethod_stripe"> + <input type="radio" class="form-check-input" name="paymentMethod" value="stripe" /> + Pay with Stripe (Credit Cards) </label> </div> <div id="paymentMethodErr" class="formErr" hidden="hidden">Payment method is a required field.</div> |