This quick guide shows you how you can add custom content below the login form on the My Account page.
/**
* Snippet Name: WooCommerce Show Custom Content Below Login Form
* Snippet Author: ecommercehints.com
*/
add_action( 'woocommerce_login_form_end', 'ecommercehints_custom_content_after_login_form', 10, 0 );
function ecommercehints_custom_content_after_login_form() {
echo 'Your custom text here!
';
};