e.preventDefault();
var button = this;
var button = this;
var username = document.getElementById('email').value;
var username = document.getElementById('email').value;
var password = document.getElementById('password').value;
var password = document.getElementById('password').value;
button.disabled = true;
button.disabled = true;
console.log(username , password);
webAuth.login({
webAuth.login({
realm: databaseConnection,
realm: databaseConnection,
username: username,
username: username,
password: password,
password: password,
captcha: captcha.getValue()
captcha: captcha.getValue()
}, function(err) {
}, function(err) {
if (err) displayError(err);
if (err) displayError(err);
button.disabled = false;
button.disabled = false;
});
});
}
}
this is returning below error
- Request URL:
https://dev-uq7a1hnypawe3uje.us.auth0.com/usernamepassword/login
- Request Method:
POST
- Status Code:
404