From 7bd0296b9ce53c7b1e53c9ccbe291e1cdae1a753 Mon Sep 17 00:00:00 2001 From: Matthew Mongeau Date: Thu, 21 Jun 2012 11:12:59 -0400 Subject: [PATCH] Direct form to /courses not /info --- lms/templates/login_modal.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/templates/login_modal.html b/lms/templates/login_modal.html index 756f86869f..aafc3c1df4 100644 --- a/lms/templates/login_modal.html +++ b/lms/templates/login_modal.html @@ -68,7 +68,7 @@ function postJSON(url, data, callback) { submit_data, function(json) { if(json.success) { - location.href="/info"; + location.href="/courses"; } else if($('#login_error').length == 0) { $('#login_form').prepend('
Email or password is incorrect.
'); } else {