From 12490ef0e6c11df700971ff91752b497875e49a0 Mon Sep 17 00:00:00 2001 From: Ravi Tripathi <ravi89@uab.edu> Date: Fri, 26 Aug 2022 12:57:10 -0500 Subject: [PATCH] Getting the entire text for modal body in one directive. --- app/templates/account/certify.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/templates/account/certify.html b/app/templates/account/certify.html index 4500ec9..8afa6f4 100644 --- a/app/templates/account/certify.html +++ b/app/templates/account/certify.html @@ -22,8 +22,7 @@ socket.on( 'certified', function( msg ) { $('#myModal2 .modal-title').text("Account Certification Successful."); - $('#myModal2 .modal-title').text("Please allow 10-15 minutes for SSH access to be restored for your account."); - $('#myModal2 .modal-body').text("Redirecting..."); + $('#myModal2 .modal-body').text("Please allow 10-15 minutes for SSH access to be restored for your account. \nRedirecting..."); setTimeout(() => { window.location.replace('{{ referrer }}'); }, 5000); -- GitLab