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 49167458d2
commit 5d85a1c9d8

View File

@ -272,7 +272,7 @@ public class DefaultLoginPageGeneratingFilter extends GenericFilterBean {
} }
if (oauth2LoginEnabled) { 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(createError(loginError, errorMsg));
sb.append(createLogoutSuccess(logoutSuccess)); sb.append(createLogoutSuccess(logoutSuccess));
sb.append("<table class=\"table table-striped\">\n"); sb.append("<table class=\"table table-striped\">\n");