From 52e9a823424c7bf95353eeef256bbb621f1ff14a Mon Sep 17 00:00:00 2001
From: Krish Moodbidri <krish94@uab.edu>
Date: Tue, 7 Sep 2021 15:45:03 -0500
Subject: [PATCH 1/7] fixed error message href

---
 messages.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/messages.py b/messages.py
index 4c62a5e..49898d0 100644
--- a/messages.py
+++ b/messages.py
@@ -1,3 +1,3 @@
 welcome_message = "Welcome to UAB's Reseach Computing cluster. The information below will be used to create your account. Please fill in all the details as this helps us understand our user base. Contact <a href='mailto:support@listserv.uab.edu'>Research Computing</a>  for any assistance in creating your account."
 cancel_message = "Close browser to end session. Contact <a href="'mailto:support@listserv.uab.edu'">Research Computing</a> for any assistance in creating your account."
-error_message = "Error while creating your account. We've been notified about this. Contact <a href="'mailto:support@listserv.uab.edu'">Research Computing</a>  for any assistance in creating your account."
+error_message = "Error while creating your account. We have been notified about this. Contact <a href="'mailto:support@listserv.uab.edu'">Research Computing</a>  for any assistance in creating your account."
-- 
GitLab


From ada2b1323d9236b29b7149507572fee7020ebd87 Mon Sep 17 00:00:00 2001
From: Krish Moodbidri <krish94@uab.edu>
Date: Tue, 7 Sep 2021 15:48:27 -0500
Subject: [PATCH 2/7] changed page title  header text

---
 app/templates/auth/SignUp.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/templates/auth/SignUp.html b/app/templates/auth/SignUp.html
index bf35e19..2a69fcd 100644
--- a/app/templates/auth/SignUp.html
+++ b/app/templates/auth/SignUp.html
@@ -79,7 +79,7 @@
 
   <div class="col-md-10 col-sm-10 my-col">
     <div id="form-wrapper">
-    <h2> Self Registration Form </h2>
+    <h2>Welcome to UAB Research Computing</h2>
     <p style="font-size:110%;"> {{ welcome_msg |safe }}</p>
       <div id="user-input">    
         <form id="signup" data-toggle="validator" role="form" action="." method="post" onsubmit="">
-- 
GitLab


From fcb58edbc4f04e45417a93ece3246ca60b26d120 Mon Sep 17 00:00:00 2001
From: Krish Moodbidri <krish94@uab.edu>
Date: Tue, 7 Sep 2021 15:51:55 -0500
Subject: [PATCH 3/7] changed modal message

---
 app/templates/auth/SignUp.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/templates/auth/SignUp.html b/app/templates/auth/SignUp.html
index 2a69fcd..7973e26 100644
--- a/app/templates/auth/SignUp.html
+++ b/app/templates/auth/SignUp.html
@@ -128,7 +128,7 @@
         <h4 class="modal-title" id="myModalLabel">Account Request Received!</h4>
       </div>
       <div class="modal-body">
-        <span>Please wait while we create your account. This may take up to 5-10 minutes.</span>
+        <span>Sit tight for a few seconds while we create your account.</span>
         <img src="{{ url_for('static', filename='img/loading.gif') }}" width="40px">
       </div>
     </div>
-- 
GitLab


From ced02ad67334ee3a01169420a16f6b8c42a6808c Mon Sep 17 00:00:00 2001
From: Krish Moodbidri <krish94@uab.edu>
Date: Wed, 8 Sep 2021 15:02:33 -0500
Subject: [PATCH 4/7] 1. fixed welcome message text 2. fixed overlay message
 text 3. fixed error message broken href tag

---
 app/templates/auth/SignUp.html | 2 +-
 messages.py                    | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app/templates/auth/SignUp.html b/app/templates/auth/SignUp.html
index 7973e26..2772352 100644
--- a/app/templates/auth/SignUp.html
+++ b/app/templates/auth/SignUp.html
@@ -128,7 +128,7 @@
         <h4 class="modal-title" id="myModalLabel">Account Request Received!</h4>
       </div>
       <div class="modal-body">
-        <span>Sit tight for a few seconds while we create your account.</span>
+        <span>Sit tight while we create your account.</span>
         <img src="{{ url_for('static', filename='img/loading.gif') }}" width="40px">
       </div>
     </div>
diff --git a/messages.py b/messages.py
index 49898d0..8f614e0 100644
--- a/messages.py
+++ b/messages.py
@@ -1,3 +1,3 @@
-welcome_message = "Welcome to UAB's Reseach Computing cluster. The information below will be used to create your account. Please fill in all the details as this helps us understand our user base. Contact <a href='mailto:support@listserv.uab.edu'>Research Computing</a>  for any assistance in creating your account."
+welcome_message = "The information below will be used to create your account. Please fill in the reason for requesting your account as this helps us understand our user base. Contact <a href='mailto:support@listserv.uab.edu'>Research Computing</a> if you have any questions."
 cancel_message = "Close browser to end session. Contact <a href="'mailto:support@listserv.uab.edu'">Research Computing</a> for any assistance in creating your account."
-error_message = "Error while creating your account. We have been notified about this. Contact <a href="'mailto:support@listserv.uab.edu'">Research Computing</a>  for any assistance in creating your account."
+error_message = "Error while creating your account. We have been notified about this. Contact <a href='mailto:support@listserv.uab.edu'>Research Computing</a>  for any assistance in creating your account."
-- 
GitLab


From cfa04b70ddc7a8436ad3787c2d85586e8f53d9bc Mon Sep 17 00:00:00 2001
From: Krish Moodbidri <krish94@uab.edu>
Date: Wed, 8 Sep 2021 15:48:33 -0500
Subject: [PATCH 5/7] fixed message text

---
 messages.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/messages.py b/messages.py
index 8f614e0..bcd630f 100644
--- a/messages.py
+++ b/messages.py
@@ -1,3 +1,3 @@
-welcome_message = "The information below will be used to create your account. Please fill in the reason for requesting your account as this helps us understand our user base. Contact <a href='mailto:support@listserv.uab.edu'>Research Computing</a> if you have any questions."
-cancel_message = "Close browser to end session. Contact <a href="'mailto:support@listserv.uab.edu'">Research Computing</a> for any assistance in creating your account."
-error_message = "Error while creating your account. We have been notified about this. Contact <a href='mailto:support@listserv.uab.edu'>Research Computing</a>  for any assistance in creating your account."
+welcome_message = "The information below will be used to create your account. Please fill in the reason for requesting your account as this helps us understand our user base.<br>Contact <a href='mailto:support@listserv.uab.edu'>Research Computing</a> if you have any questions."
+cancel_message = "Close current tab to end session.<br>Contact <a href="'mailto:support@listserv.uab.edu'">Research Computing</a> if you have any questions."
+error_message = "Error while creating your account. We have been notified about this. Contact <a href='mailto:support@listserv.uab.edu'>Research Computing</a> for any assistance in creating your account."
-- 
GitLab


From 6417ebd94d1cda7ccc2f9fe9b9cd9efbc3f2e08a Mon Sep 17 00:00:00 2001
From: Krish Moodbidri <krish94@uab.edu>
Date: Wed, 8 Sep 2021 16:35:30 -0500
Subject: [PATCH 6/7] fixed broken error message href

---
 app/templates/auth/SignUp.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/templates/auth/SignUp.html b/app/templates/auth/SignUp.html
index 2772352..a588d49 100644
--- a/app/templates/auth/SignUp.html
+++ b/app/templates/auth/SignUp.html
@@ -28,7 +28,7 @@
         socket.on( 'account error', function( msg ) {
           console.log(msg);
           $('#myModal2').modal('hide'); 
-          renderDom("Account Create Error", "{{ error_msg }}", msg);
+          renderDom("Account Create Error", "{{ error_msg |safe}}", msg);
         });
 
     });
-- 
GitLab


From e9fbbf79fdf3d82673807e2f735a8b7a14581862 Mon Sep 17 00:00:00 2001
From: Krish Moodbidri <krish94@uab.edu>
Date: Wed, 8 Sep 2021 16:36:13 -0500
Subject: [PATCH 7/7] fixed erroe message text

---
 messages.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/messages.py b/messages.py
index bcd630f..f4dfbf0 100644
--- a/messages.py
+++ b/messages.py
@@ -1,3 +1,3 @@
 welcome_message = "The information below will be used to create your account. Please fill in the reason for requesting your account as this helps us understand our user base.<br>Contact <a href='mailto:support@listserv.uab.edu'>Research Computing</a> if you have any questions."
 cancel_message = "Close current tab to end session.<br>Contact <a href="'mailto:support@listserv.uab.edu'">Research Computing</a> if you have any questions."
-error_message = "Error while creating your account. We have been notified about this. Contact <a href='mailto:support@listserv.uab.edu'>Research Computing</a> for any assistance in creating your account."
+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."
-- 
GitLab