minor polish

This commit is contained in:
Timothy Pidashev
2022-01-08 16:48:15 -08:00
parent 074f13683a
commit 3c371383d5
2 changed files with 4 additions and 27 deletions

View File

@@ -1,9 +0,0 @@
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;
}
}