From bee2398567a91c6877fc102f52ae169aefe5b47d Mon Sep 17 00:00:00 2001
From: Krish M <krish94@uab.edu>
Date: Fri, 15 Apr 2022 10:08:50 -0500
Subject: [PATCH] replaced page title

---
 app/__init__.py                      | 2 +-
 app/templates/errors/shibboleth.html | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app/__init__.py b/app/__init__.py
index 639dc5b..890e8ef 100644
--- a/app/__init__.py
+++ b/app/__init__.py
@@ -51,7 +51,7 @@ def create_app(config_name):
         session['return_url'] = request.args.get('redir', vars.default_referrer)
 
         if (not any(item in session['user'].get('eppa') for item in valid_eppa)):
-            return render_template('errors/shibboleth.html', title='shibboleth error')
+            return render_template('errors/shibboleth.html')
 
         if rc_util.check_state(session['user'].get('username')) == "blocked":
             return render_template('errors/blocked.html')
diff --git a/app/templates/errors/shibboleth.html b/app/templates/errors/shibboleth.html
index df972e1..fffdd9d 100644
--- a/app/templates/errors/shibboleth.html
+++ b/app/templates/errors/shibboleth.html
@@ -1,5 +1,5 @@
 <html class="gr__rc_uab_edu">
-<title>User Blocked </title>
+<title>User Shibboleth error </title>
 <head>
 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
 <script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/1.7.3/socket.io.min.js"></script>
-- 
GitLab