2024-06-22 14:55:32 +01:00
|
|
|
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL-3.0
|
|
|
|
|
2024-07-30 11:23:22 +01:00
|
|
|
if (localStorage.getItem("PRIVATE-secretKey") !== null || localStorage.getItem("PRIVATE-cryptoKey") !== null) {
|
2024-04-28 23:48:03 +01:00
|
|
|
window.location.replace("/app/")
|
2024-03-12 18:34:05 +00:00
|
|
|
document.body.innerHTML = "Redirecting..."
|
|
|
|
throw new Error();
|
|
|
|
}
|
|
|
|
|
2024-07-30 11:23:22 +01:00
|
|
|
let remote = localStorage.getItem("SETTING-homeServer")
|
2024-03-12 18:34:05 +00:00
|
|
|
if (remote == null) {
|
2024-08-07 17:00:16 +01:00
|
|
|
localStorage.setItem("SETTING-homeServer", "https://notes.canary.hectabit.org")
|
|
|
|
remote = "https://notes.canary.hectabit.org"
|
2024-03-12 18:34:05 +00:00
|
|
|
}
|
|
|
|
|
Fixed the labels not being hidden in inoutdivs, made inoutdivs use a flexbox or table to avoid the use of a calc() and a transform(), updated to AES-256 GCM Native crypto from CryptoJS, added a migration page to migrate from CryptoJS, remove the Argon2 Compatibility thing, remove all backwards-compatibility measures, updated the changelog to be accurate, made NoScript cancel-able, made the inoutdiv dynamically scale, told people what a homeserver is, switched to argon2id from sha-3 and sha-512, add a PoW captcha using WASM, make a really long commit message.
If you are still reading this, I admire your dedication. I spent 8 hours and 33 minutes on this commit alone.
2024-07-20 17:12:25 +01:00
|
|
|
let inputContainer = document.getElementById("inputContainer")
|
2024-03-12 18:34:05 +00:00
|
|
|
let usernameBox = document.getElementById("usernameBox")
|
|
|
|
let passwordBox = document.getElementById("passwordBox")
|
|
|
|
let statusBox = document.getElementById("statusBox")
|
|
|
|
let signupButton = document.getElementById("signupButton")
|
|
|
|
let inputNameBox = document.getElementById("inputNameBox")
|
|
|
|
let backButton = document.getElementById("backButton")
|
2024-06-21 16:49:44 +01:00
|
|
|
let opButton = document.getElementById("opButton")
|
2024-03-12 18:34:05 +00:00
|
|
|
|
Fixed the labels not being hidden in inoutdivs, made inoutdivs use a flexbox or table to avoid the use of a calc() and a transform(), updated to AES-256 GCM Native crypto from CryptoJS, added a migration page to migrate from CryptoJS, remove the Argon2 Compatibility thing, remove all backwards-compatibility measures, updated the changelog to be accurate, made NoScript cancel-able, made the inoutdiv dynamically scale, told people what a homeserver is, switched to argon2id from sha-3 and sha-512, add a PoW captcha using WASM, make a really long commit message.
If you are still reading this, I admire your dedication. I spent 8 hours and 33 minutes on this commit alone.
2024-07-20 17:12:25 +01:00
|
|
|
async function loginFetch(username, password, modern) {
|
|
|
|
return await fetch(remote + "/api/login", {
|
2024-06-26 18:59:16 +01:00
|
|
|
method: "POST",
|
|
|
|
body: JSON.stringify({
|
Fixed the labels not being hidden in inoutdivs, made inoutdivs use a flexbox or table to avoid the use of a calc() and a transform(), updated to AES-256 GCM Native crypto from CryptoJS, added a migration page to migrate from CryptoJS, remove the Argon2 Compatibility thing, remove all backwards-compatibility measures, updated the changelog to be accurate, made NoScript cancel-able, made the inoutdiv dynamically scale, told people what a homeserver is, switched to argon2id from sha-3 and sha-512, add a PoW captcha using WASM, make a really long commit message.
If you are still reading this, I admire your dedication. I spent 8 hours and 33 minutes on this commit alone.
2024-07-20 17:12:25 +01:00
|
|
|
username: username,
|
|
|
|
password: password,
|
|
|
|
modern: modern
|
2024-06-26 18:59:16 +01:00
|
|
|
}),
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json; charset=UTF-8",
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
async function migrateLegacyPassword(secretKey, password) {
|
|
|
|
return await fetch(remote + "/api/changepassword", {
|
|
|
|
method: "POST",
|
|
|
|
body: JSON.stringify({
|
|
|
|
secretKey: secretKey,
|
|
|
|
newPassword: password,
|
2024-07-21 09:09:48 +01:00
|
|
|
migration: true
|
2024-06-26 18:59:16 +01:00
|
|
|
}),
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json; charset=UTF-8",
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
Fixed the labels not being hidden in inoutdivs, made inoutdivs use a flexbox or table to avoid the use of a calc() and a transform(), updated to AES-256 GCM Native crypto from CryptoJS, added a migration page to migrate from CryptoJS, remove the Argon2 Compatibility thing, remove all backwards-compatibility measures, updated the changelog to be accurate, made NoScript cancel-able, made the inoutdiv dynamically scale, told people what a homeserver is, switched to argon2id from sha-3 and sha-512, add a PoW captcha using WASM, make a really long commit message.
If you are still reading this, I admire your dedication. I spent 8 hours and 33 minutes on this commit alone.
2024-07-20 17:12:25 +01:00
|
|
|
async function hashPass(pass) {
|
2024-06-26 18:59:16 +01:00
|
|
|
return await hashwasm.argon2id({
|
|
|
|
password: pass,
|
Fixed the labels not being hidden in inoutdivs, made inoutdivs use a flexbox or table to avoid the use of a calc() and a transform(), updated to AES-256 GCM Native crypto from CryptoJS, added a migration page to migrate from CryptoJS, remove the Argon2 Compatibility thing, remove all backwards-compatibility measures, updated the changelog to be accurate, made NoScript cancel-able, made the inoutdiv dynamically scale, told people what a homeserver is, switched to argon2id from sha-3 and sha-512, add a PoW captcha using WASM, make a really long commit message.
If you are still reading this, I admire your dedication. I spent 8 hours and 33 minutes on this commit alone.
2024-07-20 17:12:25 +01:00
|
|
|
salt: new TextEncoder().encode("I munch Burgers!!"),
|
2024-06-26 18:59:16 +01:00
|
|
|
parallelism: 1,
|
Fixed the labels not being hidden in inoutdivs, made inoutdivs use a flexbox or table to avoid the use of a calc() and a transform(), updated to AES-256 GCM Native crypto from CryptoJS, added a migration page to migrate from CryptoJS, remove the Argon2 Compatibility thing, remove all backwards-compatibility measures, updated the changelog to be accurate, made NoScript cancel-able, made the inoutdiv dynamically scale, told people what a homeserver is, switched to argon2id from sha-3 and sha-512, add a PoW captcha using WASM, make a really long commit message.
If you are still reading this, I admire your dedication. I spent 8 hours and 33 minutes on this commit alone.
2024-07-20 17:12:25 +01:00
|
|
|
iterations: 32,
|
|
|
|
memorySize: 19264,
|
2024-06-26 18:59:16 +01:00
|
|
|
hashLength: 32,
|
Fixed the labels not being hidden in inoutdivs, made inoutdivs use a flexbox or table to avoid the use of a calc() and a transform(), updated to AES-256 GCM Native crypto from CryptoJS, added a migration page to migrate from CryptoJS, remove the Argon2 Compatibility thing, remove all backwards-compatibility measures, updated the changelog to be accurate, made NoScript cancel-able, made the inoutdiv dynamically scale, told people what a homeserver is, switched to argon2id from sha-3 and sha-512, add a PoW captcha using WASM, make a really long commit message.
If you are still reading this, I admire your dedication. I spent 8 hours and 33 minutes on this commit alone.
2024-07-20 17:12:25 +01:00
|
|
|
outputType: "hex"
|
2024-06-26 18:59:16 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
Fixed the labels not being hidden in inoutdivs, made inoutdivs use a flexbox or table to avoid the use of a calc() and a transform(), updated to AES-256 GCM Native crypto from CryptoJS, added a migration page to migrate from CryptoJS, remove the Argon2 Compatibility thing, remove all backwards-compatibility measures, updated the changelog to be accurate, made NoScript cancel-able, made the inoutdiv dynamically scale, told people what a homeserver is, switched to argon2id from sha-3 and sha-512, add a PoW captcha using WASM, make a really long commit message.
If you are still reading this, I admire your dedication. I spent 8 hours and 33 minutes on this commit alone.
2024-07-20 17:12:25 +01:00
|
|
|
async function hashPassLegacy(pass) {
|
2024-06-26 18:59:16 +01:00
|
|
|
let key = pass
|
|
|
|
for (let i = 0; i < 128; i++) {
|
|
|
|
key = await hashwasm.sha3(key)
|
|
|
|
}
|
|
|
|
return key
|
|
|
|
}
|
|
|
|
|
2024-03-12 18:34:05 +00:00
|
|
|
usernameBox.classList.remove("hidden")
|
|
|
|
inputNameBox.innerText = "Username:"
|
|
|
|
|
|
|
|
let currentInputType = 0
|
|
|
|
|
|
|
|
function showInput(inputType) {
|
Fixed the labels not being hidden in inoutdivs, made inoutdivs use a flexbox or table to avoid the use of a calc() and a transform(), updated to AES-256 GCM Native crypto from CryptoJS, added a migration page to migrate from CryptoJS, remove the Argon2 Compatibility thing, remove all backwards-compatibility measures, updated the changelog to be accurate, made NoScript cancel-able, made the inoutdiv dynamically scale, told people what a homeserver is, switched to argon2id from sha-3 and sha-512, add a PoW captcha using WASM, make a really long commit message.
If you are still reading this, I admire your dedication. I spent 8 hours and 33 minutes on this commit alone.
2024-07-20 17:12:25 +01:00
|
|
|
switch (inputType) {
|
|
|
|
case 0:
|
|
|
|
usernameBox.classList.remove("hidden")
|
|
|
|
passwordBox.classList.add("hidden")
|
|
|
|
backButton.classList.add("hidden")
|
|
|
|
opButton.classList.remove("hidden")
|
|
|
|
inputContainer.classList.remove("hidden")
|
|
|
|
inputNameBox.innerText = "Username:"
|
|
|
|
statusBox.innerText = "Sign in with your Burgernotes account"
|
|
|
|
currentInputType = 0
|
|
|
|
break
|
|
|
|
case 1:
|
|
|
|
usernameBox.classList.add("hidden")
|
|
|
|
passwordBox.classList.remove("hidden")
|
|
|
|
backButton.classList.remove("hidden")
|
|
|
|
inputContainer.classList.remove("hidden")
|
|
|
|
opButton.classList.add("hidden")
|
|
|
|
inputNameBox.innerText = "Password:"
|
|
|
|
currentInputType = 1
|
|
|
|
break
|
|
|
|
case 2:
|
|
|
|
inputContainer.classList.add("hidden")
|
|
|
|
signupButton.classList.add("hidden")
|
|
|
|
backButton.classList.add("hidden")
|
|
|
|
inputNameBox.classList.add("hidden")
|
|
|
|
opButton.classList.add("hidden")
|
|
|
|
inputNameBox.innerText = "Password:"
|
|
|
|
currentInputType = 2
|
2024-03-12 18:34:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Fixed the labels not being hidden in inoutdivs, made inoutdivs use a flexbox or table to avoid the use of a calc() and a transform(), updated to AES-256 GCM Native crypto from CryptoJS, added a migration page to migrate from CryptoJS, remove the Argon2 Compatibility thing, remove all backwards-compatibility measures, updated the changelog to be accurate, made NoScript cancel-able, made the inoutdiv dynamically scale, told people what a homeserver is, switched to argon2id from sha-3 and sha-512, add a PoW captcha using WASM, make a really long commit message.
If you are still reading this, I admire your dedication. I spent 8 hours and 33 minutes on this commit alone.
2024-07-20 17:12:25 +01:00
|
|
|
function showElements(show) {
|
|
|
|
if (!show) {
|
2024-03-12 18:34:05 +00:00
|
|
|
usernameBox.classList.add("hidden")
|
|
|
|
passwordBox.classList.add("hidden")
|
|
|
|
signupButton.classList.add("hidden")
|
|
|
|
backButton.classList.add("hidden")
|
|
|
|
inputNameBox.classList.add("hidden")
|
|
|
|
showInput(currentInputType)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
usernameBox.classList.remove("hidden")
|
|
|
|
passwordBox.classList.remove("hidden")
|
|
|
|
signupButton.classList.remove("hidden")
|
|
|
|
backButton.classList.remove("hidden")
|
|
|
|
inputNameBox.classList.remove("hidden")
|
|
|
|
showInput(currentInputType)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-21 16:49:44 +01:00
|
|
|
document.addEventListener("DOMContentLoaded", function() {
|
2024-03-12 18:34:05 +00:00
|
|
|
document.getElementById("homeserver").innerText = "Your homeserver is: " + remote + ". "
|
|
|
|
});
|
|
|
|
|
2024-06-21 16:49:44 +01:00
|
|
|
opButton.addEventListener("click", () => {
|
|
|
|
window.location.href = "/signup"
|
|
|
|
});
|
|
|
|
|
2024-04-28 23:48:03 +01:00
|
|
|
signupButton.addEventListener("click", () => {
|
2024-03-12 18:34:05 +00:00
|
|
|
if (passwordBox.classList.contains("hidden")) {
|
2024-04-28 23:48:03 +01:00
|
|
|
if (usernameBox.value === "") {
|
2024-06-21 16:49:44 +01:00
|
|
|
statusBox.innerText = "Username required!"
|
2024-03-12 18:34:05 +00:00
|
|
|
return
|
|
|
|
} else {
|
|
|
|
statusBox.innerText = "Welcome back, " + usernameBox.value + "!"
|
|
|
|
}
|
|
|
|
showInput(1)
|
|
|
|
} else {
|
|
|
|
async function doStuff() {
|
|
|
|
let username = usernameBox.value
|
|
|
|
let password = passwordBox.value
|
|
|
|
|
2024-04-28 23:48:03 +01:00
|
|
|
if (password === "") {
|
2024-03-12 18:34:05 +00:00
|
|
|
statusBox.innerText = "A password is required!"
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
showInput(2)
|
|
|
|
showElements(true)
|
Fixed the labels not being hidden in inoutdivs, made inoutdivs use a flexbox or table to avoid the use of a calc() and a transform(), updated to AES-256 GCM Native crypto from CryptoJS, added a migration page to migrate from CryptoJS, remove the Argon2 Compatibility thing, remove all backwards-compatibility measures, updated the changelog to be accurate, made NoScript cancel-able, made the inoutdiv dynamically scale, told people what a homeserver is, switched to argon2id from sha-3 and sha-512, add a PoW captcha using WASM, make a really long commit message.
If you are still reading this, I admire your dedication. I spent 8 hours and 33 minutes on this commit alone.
2024-07-20 17:12:25 +01:00
|
|
|
statusBox.innerText = "Hashing password..."
|
2024-03-12 18:34:05 +00:00
|
|
|
|
Fixed the labels not being hidden in inoutdivs, made inoutdivs use a flexbox or table to avoid the use of a calc() and a transform(), updated to AES-256 GCM Native crypto from CryptoJS, added a migration page to migrate from CryptoJS, remove the Argon2 Compatibility thing, remove all backwards-compatibility measures, updated the changelog to be accurate, made NoScript cancel-able, made the inoutdiv dynamically scale, told people what a homeserver is, switched to argon2id from sha-3 and sha-512, add a PoW captcha using WASM, make a really long commit message.
If you are still reading this, I admire your dedication. I spent 8 hours and 33 minutes on this commit alone.
2024-07-20 17:12:25 +01:00
|
|
|
const hashedPass = await hashPass(password)
|
|
|
|
const login = await loginFetch(username, hashedPass, true)
|
2024-06-26 18:59:16 +01:00
|
|
|
const loginData = await login.json()
|
|
|
|
if (login.status === 401) {
|
Fixed the labels not being hidden in inoutdivs, made inoutdivs use a flexbox or table to avoid the use of a calc() and a transform(), updated to AES-256 GCM Native crypto from CryptoJS, added a migration page to migrate from CryptoJS, remove the Argon2 Compatibility thing, remove all backwards-compatibility measures, updated the changelog to be accurate, made NoScript cancel-able, made the inoutdiv dynamically scale, told people what a homeserver is, switched to argon2id from sha-3 and sha-512, add a PoW captcha using WASM, make a really long commit message.
If you are still reading this, I admire your dedication. I spent 8 hours and 33 minutes on this commit alone.
2024-07-20 17:12:25 +01:00
|
|
|
if (loginData["migrated"] !== true) {
|
|
|
|
statusBox.innerText = "Migrating to Burgernotes 2.0..."
|
|
|
|
const loginOld = await loginFetch(username, await hashPassLegacy(password), false)
|
|
|
|
const loginDataOld = await loginOld.json()
|
|
|
|
if (loginOld.status === 401) {
|
|
|
|
statusBox.innerText = "Username or password incorrect!"
|
|
|
|
showInput(1)
|
|
|
|
showElements(true)
|
|
|
|
} else if (loginOld.status === 200) {
|
|
|
|
statusBox.innerText = "Setting up encryption keys..."
|
2024-07-30 11:23:22 +01:00
|
|
|
localStorage.setItem("PRIVATE-secretKey", loginDataOld["key"])
|
|
|
|
localStorage.setItem("PRIVATE-cryptoKey", await hashwasm.argon2id({
|
Fixed the labels not being hidden in inoutdivs, made inoutdivs use a flexbox or table to avoid the use of a calc() and a transform(), updated to AES-256 GCM Native crypto from CryptoJS, added a migration page to migrate from CryptoJS, remove the Argon2 Compatibility thing, remove all backwards-compatibility measures, updated the changelog to be accurate, made NoScript cancel-able, made the inoutdiv dynamically scale, told people what a homeserver is, switched to argon2id from sha-3 and sha-512, add a PoW captcha using WASM, make a really long commit message.
If you are still reading this, I admire your dedication. I spent 8 hours and 33 minutes on this commit alone.
2024-07-20 17:12:25 +01:00
|
|
|
password: password,
|
|
|
|
salt: new TextEncoder().encode("I love Burgernotes!"),
|
|
|
|
parallelism: 1,
|
|
|
|
iterations: 32,
|
|
|
|
memorySize: 19264,
|
|
|
|
hashLength: 32,
|
|
|
|
outputType: "hex"
|
|
|
|
}))
|
2024-07-21 09:09:48 +01:00
|
|
|
statusBox.innerText = "Migrating password..."
|
|
|
|
let status = await migrateLegacyPassword(loginDataOld["key"], hashedPass)
|
|
|
|
if (status.status === 200) {
|
|
|
|
statusBox.innerText = "Welcome back!"
|
|
|
|
await new Promise(r => setTimeout(r, 200))
|
|
|
|
window.location.href = "/app/"
|
|
|
|
} else {
|
|
|
|
statusBox.innerText = (await status.json())["error"]
|
|
|
|
showInput(1)
|
|
|
|
showElements(true)
|
|
|
|
}
|
Fixed the labels not being hidden in inoutdivs, made inoutdivs use a flexbox or table to avoid the use of a calc() and a transform(), updated to AES-256 GCM Native crypto from CryptoJS, added a migration page to migrate from CryptoJS, remove the Argon2 Compatibility thing, remove all backwards-compatibility measures, updated the changelog to be accurate, made NoScript cancel-able, made the inoutdiv dynamically scale, told people what a homeserver is, switched to argon2id from sha-3 and sha-512, add a PoW captcha using WASM, make a really long commit message.
If you are still reading this, I admire your dedication. I spent 8 hours and 33 minutes on this commit alone.
2024-07-20 17:12:25 +01:00
|
|
|
} else {
|
|
|
|
statusBox.innerText = loginDataOld["error"]
|
|
|
|
showInput(1)
|
|
|
|
showElements(true)
|
2024-06-26 18:59:16 +01:00
|
|
|
}
|
|
|
|
} else {
|
Fixed the labels not being hidden in inoutdivs, made inoutdivs use a flexbox or table to avoid the use of a calc() and a transform(), updated to AES-256 GCM Native crypto from CryptoJS, added a migration page to migrate from CryptoJS, remove the Argon2 Compatibility thing, remove all backwards-compatibility measures, updated the changelog to be accurate, made NoScript cancel-able, made the inoutdiv dynamically scale, told people what a homeserver is, switched to argon2id from sha-3 and sha-512, add a PoW captcha using WASM, make a really long commit message.
If you are still reading this, I admire your dedication. I spent 8 hours and 33 minutes on this commit alone.
2024-07-20 17:12:25 +01:00
|
|
|
statusBox.innerText = "Username or password incorrect!"
|
2024-06-26 18:59:16 +01:00
|
|
|
showInput(1)
|
2024-06-26 19:03:42 +01:00
|
|
|
showElements(true)
|
2024-03-12 18:34:05 +00:00
|
|
|
}
|
2024-06-26 18:59:16 +01:00
|
|
|
} else if (login.status === 200) {
|
Fixed the labels not being hidden in inoutdivs, made inoutdivs use a flexbox or table to avoid the use of a calc() and a transform(), updated to AES-256 GCM Native crypto from CryptoJS, added a migration page to migrate from CryptoJS, remove the Argon2 Compatibility thing, remove all backwards-compatibility measures, updated the changelog to be accurate, made NoScript cancel-able, made the inoutdiv dynamically scale, told people what a homeserver is, switched to argon2id from sha-3 and sha-512, add a PoW captcha using WASM, make a really long commit message.
If you are still reading this, I admire your dedication. I spent 8 hours and 33 minutes on this commit alone.
2024-07-20 17:12:25 +01:00
|
|
|
statusBox.innerText = "Setting up encryption keys..."
|
2024-07-30 11:23:22 +01:00
|
|
|
localStorage.setItem("PRIVATE-secretKey", loginData["key"])
|
|
|
|
localStorage.setItem("PRIVATE-cryptoKey", await hashwasm.argon2id({
|
Fixed the labels not being hidden in inoutdivs, made inoutdivs use a flexbox or table to avoid the use of a calc() and a transform(), updated to AES-256 GCM Native crypto from CryptoJS, added a migration page to migrate from CryptoJS, remove the Argon2 Compatibility thing, remove all backwards-compatibility measures, updated the changelog to be accurate, made NoScript cancel-able, made the inoutdiv dynamically scale, told people what a homeserver is, switched to argon2id from sha-3 and sha-512, add a PoW captcha using WASM, make a really long commit message.
If you are still reading this, I admire your dedication. I spent 8 hours and 33 minutes on this commit alone.
2024-07-20 17:12:25 +01:00
|
|
|
password: password,
|
|
|
|
salt: new TextEncoder().encode("I love Burgernotes!"),
|
|
|
|
parallelism: 1,
|
|
|
|
iterations: 32,
|
|
|
|
memorySize: 19264,
|
|
|
|
hashLength: 32,
|
|
|
|
outputType: "hex"
|
|
|
|
}))
|
|
|
|
statusBox.innerText = "Welcome back!"
|
|
|
|
await new Promise(r => setTimeout(r, 200))
|
|
|
|
window.location.href = "/app/"
|
2024-06-26 18:59:16 +01:00
|
|
|
} else {
|
|
|
|
statusBox.innerText = loginData["error"]
|
|
|
|
showInput(1)
|
2024-06-26 19:03:42 +01:00
|
|
|
showElements(true)
|
2024-06-26 18:59:16 +01:00
|
|
|
}
|
2024-03-12 18:34:05 +00:00
|
|
|
}
|
|
|
|
doStuff()
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2024-04-28 23:48:03 +01:00
|
|
|
backButton.addEventListener("click", () => {
|
2024-03-12 18:34:05 +00:00
|
|
|
showInput(0)
|
|
|
|
});
|
|
|
|
|
|
|
|
showInput(0)
|
2024-06-22 14:56:13 +01:00
|
|
|
|
2024-07-02 18:13:28 +01:00
|
|
|
// @license-end
|