Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@
<div class="form-actions">
<%=AuthenticationEndpointUtil.i18n(resourceBundle, "no.confirmation.mail")%>
<a id="registerLink"
href="login.do?resend_username=<%=Encode.forHtml(URLEncoder.encode(request.getParameter("failedUsername"), UTF_8))%>&<%=AuthenticationEndpointUtil.cleanErrorMessages(Encode.forJava(request.getQueryString()))%>"
href="login.do?resend_username=<%=Encode.forHtml(URLEncoder.encode(request.getParameter("failedUsername"), UTF_8))%>&<%=Encode.forHtmlAttribute(AuthenticationEndpointUtil.cleanErrorMessages(request.getQueryString()))%>"
data-testid="login-page-resend-confirmation-email-link"
Comment thread
e19166 marked this conversation as resolved.
>
<%=StringEscapeUtils.escapeHtml4(AuthenticationEndpointUtil.i18n(resourceBundle, "resend.mail"))%>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@
Password Set Sucessfully
</h3>
<p style="padding-right: 90px; padding-left: 90px">
You have successfully set a password for your account <b><%=username%></b>.
You have successfully set a password for your account <b><%=Encode.forHtml(username)%></b>.
</p>
</div>
<% } %>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@
<div class="form-actions">
<%=AuthenticationEndpointUtil.i18n(resourceBundle, "no.confirmation.mail")%>
<a id="registerLink"
href="login.do?resend_username=<%=Encode.forHtml(URLEncoder.encode(request.getParameter("failedUsername"), UTF_8))%>&<%=AuthenticationEndpointUtil.cleanErrorMessages(Encode.forJava(request.getQueryString()))%>"
href="login.do?resend_username=<%=Encode.forHtml(URLEncoder.encode(request.getParameter("failedUsername"), UTF_8))%>&<%=Encode.forHtmlAttribute(AuthenticationEndpointUtil.cleanErrorMessages(request.getQueryString()))%>"
data-testid="login-page-resend-confirmation-email-link"
Comment thread
e19166 marked this conversation as resolved.
>
<%=StringEscapeUtils.escapeHtml4(AuthenticationEndpointUtil.i18n(resourceBundle, "resend.mail"))%>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@
Password Set Sucessfully
</h3>
<p style="padding-right: 90px; padding-left: 90px">
You have successfully set a password for your account <b><%=username%></b>.
You have successfully set a password for your account <b><%=Encode.forHtml(username)%></b>.
</p>
</div>
<% } %>
Expand Down
Loading