Constant Field Values

Contents

software.xdev.*

  • software.xdev.spring.security.web.authentication.ui.extendable.filters.ExtendableDefaultLoginPageGeneratingFilter
    Modifier and Type
    Constant Field
    Value
    protected static final String
    "<div class=\"alert alert-danger\" role=\"alert\">{{message}}</div>"
    protected static final String
    "{\"{{headerName}}\" : \"{{headerValue}}\"}"
    protected static final String
    "<input name=\"{{name}}\" type=\"hidden\" value=\"{{value}}\" />\n"
    protected static final String
    " <form class=\"login-form\" method=\"post\" action=\"{{loginUrl}}\">\n <h2>Please sign in</h2>\n{{errorMessage}}{{logoutMessage}}\n <p>\n <label for=\"username\" class=\"screenreader\">Username</label>\n <input type=\"text\" id=\"username\" name=\"{{usernameParameter}}\" placeholder=\"Username\" required autofocus>\n </p>\n <p>\n <label for=\"password\" class=\"screenreader\">Password</label>\n <input type=\"password\" id=\"password\" name=\"{{passwordParameter}}\" placeholder=\"Password\" {{autocomplete}}required>\n </p>\n{{rememberMeInput}}\n{{hiddenInputs}}\n <button type=\"submit\" class=\"primary\">Sign in</button>\n </form>"
    protected static final String
    "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, shrink-to-fit=no\">\n <meta name=\"description\" content=\"\">\n <meta name=\"author\" content=\"\">\n <title>Please sign in</title>\n <link href=\"{{contextPath}}/default-ui.css\" rel=\"stylesheet\" />{{javaScript}}\n </head>\n <body>\n <div class=\"content\">\n{{formLogin}}\n{{oneTimeTokenLogin}}{{passkeyLogin}}\n{{oauth2Login}}\n{{saml2Login}}\n </div>\n </body>\n</html>"
    protected static final String
    "<h2>Login with OAuth 2.0</h2>\n{{errorMessage}}{{logoutMessage}}\n<table class=\"table table-striped\">\n {{oauth2Rows}}\n</table>"
    protected static final String
    "<tr><td><a href=\"{{url}}\">{{clientName}}</a></td></tr>"
    protected static final String
    " <form id=\"ott-form\" class=\"login-form\" method=\"post\" action=\"{{generateOneTimeTokenUrl}}\">\n <h2>Request a One-Time Token</h2>\n{{errorMessage}}{{logoutMessage}}\n <p>\n <label for=\"ott-username\" class=\"screenreader\">Username</label>\n <input type=\"text\" id=\"ott-username\" name=\"username\" placeholder=\"Username\" required>\n </p>\n{{hiddenInputs}}\n <button class=\"primary\" type=\"submit\" form=\"ott-form\">Send Token</button>\n </form>\n"
    protected static final String
    "<div class=\"login-form\">\n<h2>Login with Passkeys</h2>\n<button id=\"passkey-signin\" type=\"submit\" class=\"primary\">Sign in with a passkey</button>\n</div>\n"
    protected static final String
    " <script type=\"text/javascript\" src=\"{{contextPath}}/login/webauthn.js\"></script>\n <script type=\"text/javascript\">\n document.addEventListener(\"DOMContentLoaded\",() => setupLogin({{csrfHeaders}}, \"{{contextPath}}\", document.getElementById(\'passkey-signin\')));\n </script>\n"
    protected static final String
    "<h2>Login with SAML 2.0</h2>\n{{errorMessage}}{{logoutMessage}}\n<table class=\"table table-striped\">\n {{samlRows}}\n</table>"
    protected static final String
    "<tr><td><a href=\"{{url}}\">{{clientName}}</a></td></tr>"
  • software.xdev.spring.security.web.authentication.ui.extendable.filters.ExtendableDefaultLogoutPageGeneratingFilter
    Modifier and Type
    Constant Field
    Value
    public static final String
    "<input name=\"{{name}}\" type=\"hidden\" value=\"{{value}}\" />\n"
    protected static final String
    "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, shrink-to-fit=no\">\n <meta name=\"description\" content=\"\">\n <meta name=\"author\" content=\"\">\n <title>Confirm Log Out?</title>\n <link href=\"{{contextPath}}/default-ui.css\" rel=\"stylesheet\" />\n </head>\n <body>\n <div class=\"content\">\n <form class=\"logout-form\" method=\"post\" action=\"{{contextPath}}/logout\">\n <h2>Are you sure you want to log out?</h2>\n{{hiddenInputs}}\n <button class=\"primary\" type=\"submit\">Log Out</button>\n </form>\n </div>\n </body>\n</html>"