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.
86 lines
4.4 KiB
86 lines
4.4 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-white" bg-[url('../../img/bground1.jpg')]>
|
|
<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">Product Key Gen</p>
|
|
<p class="text-md md:text-xl font-normal tracking-wide pb-10">Select the appropriate windows edition you have</p>
|
|
<p class="text-md md:text-xl font-normal tracking-wide pb-10">Press the button to automatically generate and install a generic KMS product key.</p>
|
|
<p><a id="settings" style="color:cornflowerblue; text-decoration: underline; cursor:pointer;">I don't know my windows edition</a></p>
|
|
|
|
<div class="text-center text-white">
|
|
<button type="button" class="rounded-xl w-full bg-indigo-900 my-2 py-5 my-2 px-5 text-sm md:text-xl font-bold tracking-wide justify-center items-center font-[manrope]" id="8pro">8 Pro</button>
|
|
<button type="button" class="rounded-xl w-full bg-indigo-900 my-2 py-5 my-2 px-5 text-sm md:text-xl font-bold tracking-wide justify-center items-center font-[manrope]" id="81pro">8.1 Pro</button>
|
|
<button type="button" class="rounded-xl w-full bg-indigo-900 my-2 py-5 my-2 px-5 text-sm md:text-xl font-bold tracking-wide justify-center items-center font-[manrope]" id="8core">8 Core</button>
|
|
<button type="button" class="rounded-xl w-full bg-indigo-900 my-2 py-5 my-2 px-5 text-sm md:text-xl font-bold tracking-wide justify-center items-center font-[manrope]" id="81core">8.1 Core</button>
|
|
<button type="button" class="rounded-xl w-full bg-indigo-900 my-2 py-5 my-2 px-5 text-sm md:text-xl font-bold tracking-wide justify-center items-center font-[manrope]" id="8ent">8 Enterprise</button>
|
|
<button type="button" class="rounded-xl w-full bg-indigo-900 my-2 py-5 my-2 px-5 text-sm md:text-xl font-bold tracking-wide justify-center items-center font-[manrope]" id="81ent">8.1 Enterprise</button>
|
|
</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 hover:bg-indigo-900 mx-2" onclick="location.href = '../../ver/index.html';">
|
|
<span class="hidden md:inline">Back</span>
|
|
</button>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
<script>
|
|
|
|
const { ipcRenderer } = require('electron');
|
|
|
|
document.getElementById("8pro").addEventListener("click", function(){
|
|
ipcRenderer.send("setIPK", "NG4HW-VH26C-733KW-K6F98-J8CK4");
|
|
location.href = "../../../activate/index.html";
|
|
});
|
|
|
|
document.getElementById("81pro").addEventListener("click", function(){
|
|
ipcRenderer.send("setIPK", "GCRJD-8NW9H-F2CDX-CCM8D-9D6T9");
|
|
location.href = "../../../activate/index.html";
|
|
});
|
|
|
|
document.getElementById("8core").addEventListener("click", function(){
|
|
ipcRenderer.send("setIPK", "BN3D2-R7TKB-3YPBD-8DRP2-27GG4");
|
|
location.href = "../../../activate/index.html";
|
|
});
|
|
|
|
document.getElementById("81core").addEventListener("click", function(){
|
|
ipcRenderer.send("setIPK", "M9Q9P-WNJJT-6PXPY-DWX8H-6XWKK");
|
|
location.href = "../../../activate/index.html";
|
|
});
|
|
|
|
document.getElementById("8ent").addEventListener("click", function(){
|
|
ipcRenderer.send("setIPK", "32JNW-9KQ84-P47T8-D8GGY-CWCK7");
|
|
location.href = "../../../activate/index.html";
|
|
});
|
|
|
|
document.getElementById("81ent").addEventListener("click", function(){
|
|
ipcRenderer.send("setIPK", "MHF9N-XY6XB-WVXMC-BTDCT-MKKG7");
|
|
location.href = "../../../activate/index.html";
|
|
});
|
|
|
|
|
|
</script>
|
|
|
|
</html>
|
|
|