[Users | Trunk]: Add client secret method

This commit is contained in:
Konstantinos Triantafyllou 2020-11-12 10:38:15 +00:00
parent 63aeb7e8a1
commit 7048eff0f3
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ public class RegisterServiceServlet extends HttpServlet {
request.getSession().setAttribute("success",
"Your service has been successfully registered!<br>" +
"<b>Client ID</b>: " + serviceResponse.getClientId() +
"<br><span style=\"word-wrap: break-word\"><b>Client Secret</b>: " + serviceResponse.getClientSecret() + "</span>");
"<br><span style=\"word-wrap: break-word\"><b>Client Secret</b>:" + serviceResponse.getClientSecret() + "</span>");
}
} catch (SQLException sqle) {