Fix DefaultLoginPageGeneratingFilter Markup

the `</h3>` should be `</h2>`.
This commit is contained in:
Ian He 2018-12-15 10:55:39 +08:00 committed by Rob Winch
parent d1a754fcf2
commit 9818da79fe
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ public class DefaultLoginPageGeneratingFilter extends GenericFilterBean {
}
if (oauth2LoginEnabled) {
sb.append("<h2 class=\"form-signin-heading\">Login with OAuth 2.0</h3>");
sb.append("<h2 class=\"form-signin-heading\">Login with OAuth 2.0</h2>");
sb.append(createError(loginError, errorMsg));
sb.append(createLogoutSuccess(logoutSuccess));
sb.append("<table class=\"table table-striped\">\n");