Faulty code for creating unique registration page

Glad to hear you’re moving forward, Tracy.

You can make elements hidden initially in the properties panel , and show them when something happens, e.g. the registration is successful:

wixUsers.register(/* your parameters go here */)
    .then(result => {
        // ...
        
        $w('#pendingMessage').show(); 
    })
    .catch(error => {
        // I assume the registration might fail if the user is already registered or for some other reason
        // therefore, you can display the error message
        $w('#errorMessage').text = error;
        $w('#errorMessage').show();
    });

Or if instead of showing the pendingMessage you want to redirect to some page, use wixLocation.to.

Good luck!
Vytautas