Prints scripts or data at the bottom of the login form.
<?php add_action( 'login_form_bottom', 'function_name' ); ?>
$app = \Liten\Liten::getInstance(); function login_form_message() { $message = 'Some custom message to print.'; echo $message; } $app->hook->add_action('login_form_bottom', 'login_form_message');
Since 6.1.06
login_form_bottom hook is located in app/views/index/login.php.