diff --git a/lms/templates/dashboard.html b/lms/templates/dashboard.html
index 60bb9062b4..1b6990c32f 100644
--- a/lms/templates/dashboard.html
+++ b/lms/templates/dashboard.html
@@ -85,7 +85,11 @@
% endfor
% else:
-
You are not enrolled in any courses. Find some here.
+
% endif
diff --git a/lms/templates/login_modal.html b/lms/templates/login_modal.html
index 5730e45f85..90b5688b73 100644
--- a/lms/templates/login_modal.html
+++ b/lms/templates/login_modal.html
@@ -1,3 +1,4 @@
+<%! from django.core.urlresolvers import reverse %>
<%namespace name='static' file='static_content.html'/>
@@ -59,7 +60,7 @@
submit_data,
function(json) {
if(json.success) {
- location.href="/courses";
+ location.href="${reverse('dashboard')}";
} else if($('#login_error').length == 0) {
$('#login_form').prepend('Email or password is incorrect.
');
} else {
diff --git a/lms/templates/navigation.html b/lms/templates/navigation.html
index 6a82db59dc..f474a3f888 100644
--- a/lms/templates/navigation.html
+++ b/lms/templates/navigation.html
@@ -39,7 +39,7 @@
- Account Settings
- - Help
+ - Help
- Log Out