DONE: UI suggestion for dashboard 3

I think you can remove the alert that tells us we have successfully logged in. From a UI perspective it’s not needed because the user can clearly see that they they’ve logged in.

Or, at least auto close it for the user after something like 2 seconds and then slide the rest of the content up like this;

$(".alert-success").delay(2000).slideUp(200, function() {
    $(this).alert('close');
});

I’ll push this live tonight. Thanks @PrestonKorn!

1 Like