WasteInformationServer/resources/wwwroot/js/index.js

29 lines
997 B
JavaScript
Raw Normal View History

$(document).ready(function () {
$('#loginbtn').click(function (e) {
e.preventDefault();
console.log("clicked login button");
var username = $("#userfield")[0].value;
var password = $("#passfield")[0].value;
2019-09-20 14:46:13 +00:00
$.post('/senddata/loginget', 'username=' + username + '&password=' + password, function (data) {
2019-09-20 14:46:13 +00:00
console.log(data);
if (data.status == "nodbconn"){
Swal.fire({
type: "error",
title: 'No connection to Database',
html: 'Setup DB here --> <a href="index.html">click<a/>.',
}).then((result) => {
console.log('Popup closed. ')
});
}
if (data.accept == true) {
console.log("successfully logged in!");
document.cookie = "username=" + username;
window.location = 'dashboard.html';
}
}, 'json');
});
2019-09-13 13:57:33 +00:00
});