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] 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