Files
web/js/python/login.js
2022-01-08 16:32:53 -08:00

9 lines
308 B
JavaScript

function login(username, password) {
if (username == 'student' && password == 'student.23264') {
setTimeout(function() { // delay the location.replace for one second for login animation
location.replace('assignments.html');
}, 1000);
} else {
return false;
}
}