spee.ch/public/assets/js/loginFunctions.js
2018-01-24 09:27:36 -08:00

22 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');
}
})
}