21 lines
899 B
JavaScript
21 lines
899 B
JavaScript
function loginToChannel (event) {
|
|
const userName = document.getElementById('channel-login-name-input').value;
|
|
const password = document.getElementById('channel-login-password-input').value;
|
|
// prevent default
|
|
event.preventDefault()
|
|
validationFunctions.validateNewChannelLogin(userName, password)
|
|
.then(() => {
|
|
return sendAuthRequest(userName, password, '/login')
|
|
})
|
|
.then(result => {
|
|
window.location = '/';
|
|
})
|
|
.catch(error => {
|
|
const loginErrorDisplayElement = document.getElementById('login-error-display-element');
|
|
if (error.name){
|
|
validationFunctions.showError(loginErrorDisplayElement, error.message);
|
|
} else {
|
|
validationFunctions.showError(loginErrorDisplayElement, 'There was an error logging into your channel');
|
|
}
|
|
})
|
|
}
|