allauth- signup redirect

2020-02-25 Thread Tosin Ayoola
halo guy, i'm using allauth for my authentication, but i wan redirect the signup user to a page where they get update their profile detail, how do i override the default success_url after the user have successfully signup , -- You received this message because you are subscribed to the Google Gro

Re: allauth- signup redirect

2020-02-25 Thread Vishnu Thuletiya
In setting.py you can write LOGIN_REDIRECT_URL='your redirect path' On Tue, 25 Feb 2020, 11:57 pm Tosin Ayoola, wrote: > halo guy, i'm using allauth for my authentication, but i wan redirect the > signup user to a page where they get update their profile detail, how do i > override the default s

Re: allauth- signup redirect

2020-02-25 Thread Naveen Arora
Hi Tosin, The simplest way would be to override the template account/signup.html with your own copy. If you examine that template you will see the following section: {% if redirect_field_value %}{% endif %} If you remove the if/endif part and change the value inside, the signup page will r

Re: allauth- signup redirect

2020-02-26 Thread Tosin Ayoola
thanks i've fixed it, On Wed, Feb 26, 2020 at 8:33 AM Naveen Arora wrote: > Hi Tosin, > > > The simplest way would be to override the template account/signup.html with > your own copy. If you examine that template you will see the following > section: > > {% if redirect_field_value %}{% endif %}