You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
3.0 KiB
66 lines
3.0 KiB
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="../../css/dist.css" rel="stylesheet">
|
|
<title>Univator</title>
|
|
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
|
|
</head>
|
|
<body>
|
|
<div class="flex min-h-[100vh] justify-center items-center text-black bg-[#D0E7A6]">
|
|
<div class="md:max-w-[70vw] ml-auto mr-auto">
|
|
|
|
<div class="min-w-[60vw] rounded-3xl flex flex-wrap sm:flex-nowrap items-center py-10 sm:py-100 px-8 pb-10 justify-center text-center">
|
|
<div class="my-5 md:w-2/3 items-center justify-center text-center">
|
|
<p class="text-3xl pb-10 font-extrabold tracking-wide">Set e-KMS server</p>
|
|
<p class="text-md md:text-xl font-normal tracking-wide pb-10">Choose a emulated Key Management Server to generate the activation cert, you can host one yourself using open source tools like vlmcsd or py-kms (and its actually recommended if you can provide good uptime).</p>
|
|
|
|
<div class="text-center text-white">
|
|
<div class="kmscontainer">
|
|
<div class="windows pr-5">
|
|
<button type="button" class="rounded-xl w-full bg-[#D16014] my-2 py-5 my-2 px-5 text-sm md:text-xl font-bold tracking-wide justify-center items-center font-[manrope]" id="kmsDefaultButton">use the default server</button>
|
|
</div>
|
|
<div class="office pl-5">
|
|
<button type="button" class="rounded-xl w-full bg-mycol2 my-2 py-5 px-5 text-sm md:text-xl font-bold tracking-wide justify-center items-center font-[manrope]" onclick="location.href = './customKMS/index.html';">set a custom server</button>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="text-white bold fixed bottom-4 flex flex-row flex-wrap sm:flex-nowrap items-center mx-50 justify-center ml-auto mr-auto mx-100 px-2 pt-100 text-md bg-purple md:bg-transparent">
|
|
|
|
<button type="button" class="redir outline rounded-md py-1 md:py-3 bg-mycol2 px-3 md:px-7 outline-0 outline-white mx-2" onclick="location.href = '../../index.html';">
|
|
<span class="hidden md:inline">Back</span>
|
|
</button>
|
|
<button type="button" class="redir outline rounded-md py-1 md:py-3 bg-mycol2 px-3 md:px-7 outline-0 outline-white mx-2" onclick="location.href = './about/index.html';">
|
|
<span class="hidden md:inline">About e-KMS servers</span>
|
|
</button>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
<script>
|
|
|
|
const { ipcRenderer } = require('electron');
|
|
|
|
var kmsDefault = document.getElementById("kmsDefaultButton");
|
|
|
|
kmsDefault.addEventListener("click", function(){
|
|
ipcRenderer.send("setKMS", "kms8.msguides.com");
|
|
location.href='../ver/index.html';
|
|
});
|
|
</script>
|
|
|
|
</html>
|
|
|