redirect to another page if user has registered successfully

You have to use the registration_redirect hook, add this into your theme’s functions.php

function wpse_registration_redirect() {
    return home_url( '/page' );
}

add_filter( 'registration_redirect', 'wpse_registration_redirect' );