This guide shows you how to add custom content above the login form fields shown on the My Account page.
/**
* Snippet Name: WooCommerce Custom Content Above Login Form Fields
* Snippet Author: ecommercehints.com
*/
add_action( 'woocommerce_login_form_start', 'ecommercehints_custom_login_form_text_below_heading', 10);
function ecommercehints_custom_login_form_text_below_heading() {
echo 'Your custom text here!
';
};