updated some stuff idk i forgor

This commit is contained in:
2025-01-19 11:03:37 +01:00
parent 46575bf30d
commit 006e0edfa0
5 changed files with 24 additions and 15 deletions
+15 -10
View File
@@ -1,16 +1,18 @@
CURRENT_PAGE = PAGES.LICENSE
const authorInput = document.getElementById("authorInput")
const createdInput = document.getElementById("createdInput")
const expireInput = document.getElementById("expireInput")
const identityInput = document.getElementById("identityInput")
const sillyInput = document.getElementById("sillyInput")
const authorInput = document.getElementById("authorInput")
const createdInput = document.getElementById("createdInput")
const expireInput = document.getElementById("expireInput")
const identityInput = document.getElementById("identityInput")
const sillyInput = document.getElementById("sillyInput")
const signatureInput = document.getElementById("signatureInput")
const authorValue = document.getElementById("authorValue")
const createdValue = document.getElementById("createdValue")
const expireValue = document.getElementById("expireValue")
const genderValue = document.getElementById("genderValue")
const sillyValue = document.getElementById("sillyValue")
const authorValue = document.getElementById("authorValue")
const createdValue = document.getElementById("createdValue")
const expireValue = document.getElementById("expireValue")
const genderValue = document.getElementById("genderValue")
const sillyValue = document.getElementById("sillyValue")
const signatureValue = document.getElementById("signature")
const sillyNumberValue = document.getElementById("sillyNumberValue")
@@ -36,6 +38,9 @@ identityInput.oninput = function() {
sillyInput.oninput = function() {
sillyNumberValue.innerHTML = prependZero(this.value)
}
signatureInput.oninput = function() {
signatureValue.innerHTML = this.value
}
function onLoadLicense() {