Here is my current code.
function custom_login_footer() {
return '<p>text text text</p>';
}
add_filter('login_form_bottom', 'custom_login_footer');
I am trying to add text below the submit button, but I do not know how to apply the login_form_bottom filter.