mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 19:13:51 +00:00
9 lines
308 B
JavaScript
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;
|
|
}
|
|
} |