This guide shows you how you can add any custom text after the register button on the registration form shown on the My Account page.
/**
* Snippet Name: WooCommerce Custom Text After Register Form Button
* Snippet Author: ecommercehints.com
*/
add_action( 'woocommerce_register_form_end', 'ecommercehints_custom_text_after_register_form_button' );
function ecommercehints_custom_text_after_register_form_button() {
echo '🤫 Welcome to the club...
';
}