Implemented the two factor auth login form.

This commit is contained in:
Jan Böhmer 2019-12-23 18:45:32 +01:00
parent 35b5640627
commit 10ca895309
5 changed files with 78 additions and 4 deletions

View file

@ -363,6 +363,11 @@ class AjaxUI {
return;
}
//Ignore ajax errors with 200 code (like the ones during 2FA authentication)
if(request.status == 200) {
return;
}
console.error("Error getting the ajax data from server!");
console.log(event);
console.log(request);