
add_action( 'wpcfe_before_login_form', 'wpcfe_before_login_form_callback' );
function wpcfe_before_login_form_callback(){
?>
<p>Custom content before Login form</p>
<?php
}

add_action( 'wpcfe_after_login_form', 'wpcfe_before_after_form_callback' );
function wpcfe_before_after_form_callback(){
?>
<p>Custom content after Login form</p>
<?php
}