[1.2.0/HWID] Add some final polish

Completed HWID activation mode and added some finishing touches, not
100% polished so I might come back and make it a bit more elegant in the
future
dev
Joaquin 3 years ago
parent 72627ef6c4
commit c3109383bc
Signed by: puly
GPG Key ID: 9E9299CD96C65EC6
  1. 7
      webPage/winhwid/genticket.html

@ -19,7 +19,7 @@
</div>
<textarea class="rounded-2xl text-xl monospace bg-white text-black hidden" id="txtbox" cols="38" rows="10" style="font-family: monospace; display: none; margin-left: auto; margin-right: auto;">[GENERATED TICKET WILL APPEAR HERE]</textarea>
<textarea class="rounded-2xl text-sm monospace bg-white text-black hidden" id="txtbox" cols="55" rows="15" style="font-family: monospace; display: none; margin-left: auto; margin-right: auto;">[GENERATED TICKET WILL APPEAR HERE]</textarea>
<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] hidden" id="next" onclick="location.href = './done.html';">Install Ticket and Activate Windows (Permanent) →<p class="text-[0.5rem] md:text-xs">admin required</p></button>
</div>
@ -48,8 +48,9 @@
});
ipcRenderer.on('ticketout', (ticket) => {
txtbox.textContent = String(ticket);
ipcRenderer.on('ticketout', (event, ticket) => {
txtbox.textContent = String(ticket).toString();
console.log(ticket);
nextbut.style.display = 'block';
txtbox.style.display = 'block';
});

Loading…
Cancel
Save