diff --git a/app/__init__.py b/app/__init__.py
index 8882ced081b4a169c815081990280ef67b178514..ef026b2fc284968f475bd0368e8298efa1eaad9a 100644
--- a/app/__init__.py
+++ b/app/__init__.py
@@ -60,8 +60,8 @@ def create_app(config_name):
                                referrer=session['return_url'], cancel_url=vars.default_referrer,
                                cancel_msg=messages.cancel_message, certification_message=messages.certification_message)
 
-        if rc_util.check_state(session['user'].get('username')) == "ok":
-            return render_template('account/landing.html')
+        elif rc_util.check_state(session['user'].get('username')) == "ok":
+            return render_template('account/good_standing.html', good_standing_msg= messages.good_standing_message)
 
         else:
             return render_template('auth/SignUp.html', room_id=session['uid'],
diff --git a/messages.py b/messages.py
index 8463099d6d10b7627d5a332e8d3dce32fdc180e7..4844700eeec6210cd2d175db87ab42d35da2c04a 100644
--- a/messages.py
+++ b/messages.py
@@ -3,3 +3,4 @@ cancel_message = "Close current tab to end session.<br>Contact <a href="'mailto:
 error_message = "An error occurred while creating your account. Research Computing team has been notified and is working on fixing it.<br>Contact <a href='mailto:support@listserv.uab.edu'>Research Computing</a> if you have any questions."
 certification_message = "Welcome back to the UAB Research Computing services page.<br>We are asking for researchers to recertify their accounts annually so that we'll know who is still actively using the systems. <br>Fill out the form below and hit the Certify Account button when you are done."
 unauthorized_message = "Your UAB Research Computing account is currently on hold.<br>Accounts are put on hold if there are changes with UAB affiliation or if there is an issue on one of the platforms.<br>Please reach out to <a href="'mailto:support@listserv.uab.edu'">Research Computing</a> or attend the weekly office hours and we'll work with you to clear your account."
+good_standing_message= "Your account is in good standing. Click <a href=https://rc.uab.edu>here</a> to proceed to dashboard"