diff --git a/user_managment/app.py b/user_managment/app.py index 5921baa..4460a86 100644 --- a/user_managment/app.py +++ b/user_managment/app.py @@ -194,7 +194,7 @@ def create_app(): user, user_email = self.db_manager.get_user_and_user_email_by_email(login_form.email.data) #Add aditional message if not user.initial_admin_approved: - flash('You account is waiting for approval from an administrator. See the Help page for more information.', 'success') + flash('You account is waiting for approval from an administrator. See the Help page for more information. You will receive an email when your account is approved.', 'success') if user: # Log user in @@ -441,6 +441,7 @@ def create_app():