You appear to be a bot. Output may be restricted
Description
Should we show the SSO login form?
$_GET['jetpack-sso-default-form'] is used to provide a fallback in case JavaScript is not enabled. The default_to_sso_login() method allows us to dynamically decide whether we show the SSO login form or not. The SSO module uses the method to display the default login form if we can not find a user to log in via SSO. But, the method could be filtered by a site admin to always show the default login form if that is preferred.
Usage
Jetpack_SSO::print_inline_admin_css();
Parameters
Returns
void
Source
File name: jetpack/modules/sso.php
Lines:
1 to 14 of 14
public function print_inline_admin_css() { ?> <style> .jetpack-sso .message { margin-top: 20px; } .jetpack-sso #login .message:first-child, .jetpack-sso #login h1 + .message { margin-top: 0; } </style> <?php }