Redirect page after customer successfully registers

{% form 'create_customer', return_to: 'https://onmanedev.myshopify.com/pages/result-quiz' %}
                {{ form.errors | default_errors }}
               
                

               
                  
                     
                

              
                
               
                  
                     
                

              
                
                 
                  
                   
                

              
                
                
                  
                      
                

              
                
                  
                
                

              {% endform %}    
I use this form for customer registration; but the problem is after successful submission, it redirects to home page instead of result page; if anyone knows please help me, I really need to fix this!

It requires handling the create_customer form using JavaScript, then using finally() to direct your customer to whatever page you need using

window.location.href = “https://whateverlink.com”;