fix(site): setup-password token length 64 -> 96 #14

Merged
serge merged 1 commits from fix/setup-token-length-96 into main 2026-05-11 00:14:37 +03:00

View File

@ -200,7 +200,7 @@
} }
async function init() { async function init() {
if (!token || token.length !== 64 || !/^[a-f0-9]+$/i.test(token)) { if (!token || token.length !== 96 || !/^[a-f0-9]+$/i.test(token)) {
showError("Lien invalide ou incomplet."); showError("Lien invalide ou incomplet.");
return; return;
} }