This quick code snippet allows you to show custom content below the Login form fields on the My Account page.
/**
* Snippet Name: WooCommerce Custom Content Below Login Form Fields
* Snippet Author: ecommercehints.com
*/
add_action( 'woocommerce_login_form', 'ecommercehints_custom_login_form_text_below_form_fields', 10);
function ecommercehints_custom_login_form_text_below_form_fields() {
echo 'Your custom text here!
';
};