This commit is contained in:
rustdesk 2024-01-10 14:10:32 +08:00
parent 14f709e82c
commit 775e355fc6
2 changed files with 5 additions and 5 deletions

View File

@ -678,8 +678,8 @@ label {
</form>
<br>
<script>
let users;
let devices;
var users = 10;
var devices = 100;
function submit() {
redirectUrl = "https://rustdesk.com/api/lic/stripe/checkout?type=Customized&users=" + users + "&devices=" + devices;
gotoBuy(redirectUrl);
@ -859,7 +859,7 @@ window.addEventListener("load", function() {
function gotoBuy(redirectUrl) {
Swal.fire({
title: 'Please Confirm',
html: 'Do you want to proceed to the purchase page? Please note that what you are purchasing is <b style="font-size: 2em">NOT</b> a SaaS (Software as a Service) subscription. Instead, it is a license for a <b style="font-size: 2em">self-hosting</b> solution, which requires you to deploy it on your own server (cloud server, e.g. AWS EC2, Azure VM, Vultr VPS etc, or your on-premise server). Please <b style="font-size: 2em">don\'t</b> buy if you don\'t know what is self-hosting',
html: '<p style="text-align:left">Do you want to proceed to the purchase page? <br><br>Please note that what you are purchasing is <b style="font-size: 2em">NOT</b> a <span style="text-decoration:line-through">SaaS(Software as a Service)</span> subscription. <br><br>Instead, it is a license for a <b style="font-size: 2em">self-hosting</b> solution, which requires you to deploy it on your own server (cloud server, e.g. AWS EC2, Azure VM, Vultr VPS etc, or your on-premise server). <br><br>Please <b style="font-size: 2em">don\'t</b> buy if you don\'t know what is self-hosting',
icon: 'question',
showCancelButton: true,
confirmButtonText: 'Yes',

View File

@ -659,8 +659,8 @@ label {
</form>
<br>
<script>
var users;
var devices;
var users = 10;
var devices = 100;
function submit() {
redirectUrl = "https://rustdesk.com/api/lic/stripe/checkout?currency=cny&type=Customized&users=" + users + "&devices=" + devices;
gotoBuy(redirectUrl);