Improve handling of code input in TOTP page
This commit is contained in:
parent
1a1b31e8a0
commit
834ba1987e
@ -38,36 +38,41 @@ function OTPInput() {
|
|||||||
for (let i = 0; i < inputs.length; i++) {
|
for (let i = 0; i < inputs.length; i++) {
|
||||||
// Reset form on init
|
// Reset form on init
|
||||||
inputs[i].value = "";
|
inputs[i].value = "";
|
||||||
|
|
||||||
inputs[i].addEventListener('keydown', (event) => {
|
|
||||||
if (event.key === "Backspace") {
|
|
||||||
if (inputs[i].value != "") {
|
|
||||||
inputs[i].value = '';
|
|
||||||
} else if (i > 0) {
|
|
||||||
inputs[i - 1].value = "";
|
|
||||||
inputs[i - 1].focus();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Code has already been typed entirely
|
|
||||||
else if (i === inputs.length - 1 && inputs[i].value !== '')
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add new digit
|
|
||||||
else if ((event.keyCode >= 48 && event.keyCode <= 57)
|
|
||||||
|| (event.keyCode >= 96 && event.keyCode <= 105)){
|
|
||||||
inputs[i].value = event.key;
|
|
||||||
if (i !== inputs.length - 1)
|
|
||||||
inputs[i + 1].focus();
|
|
||||||
else
|
|
||||||
submitCode();
|
|
||||||
}
|
|
||||||
|
|
||||||
event.preventDefault();
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let currIndex = 0;
|
||||||
|
|
||||||
|
document.addEventListener('keydown', (event) => {
|
||||||
|
if (event.key === "Backspace") {
|
||||||
|
if (inputs[currIndex].value != "") {
|
||||||
|
inputs[currIndex].value = '';
|
||||||
|
} else if (currIndex > 0) {
|
||||||
|
inputs[currIndex - 1].value = "";
|
||||||
|
inputs[currIndex - 1].focus();
|
||||||
|
currIndex--;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Code has already been typed entirely
|
||||||
|
else if (currIndex === inputs.length - 1 && inputs[currIndex].value !== '')
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add new digit
|
||||||
|
else if ((event.keyCode >= 48 && event.keyCode <= 57)
|
||||||
|
|| (event.keyCode >= 96 && event.keyCode <= 105)){
|
||||||
|
inputs[currIndex].value = event.key;
|
||||||
|
if (currIndex < inputs.length - 1) {
|
||||||
|
inputs[currIndex + 1].focus();
|
||||||
|
currIndex++;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
submitCode();
|
||||||
|
}
|
||||||
|
|
||||||
|
event.preventDefault();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function submitCode() {
|
function submitCode() {
|
||||||
|
Loading…
Reference in New Issue
Block a user