Re: How can i use double login form in a django app redireting to two different pages

2013-01-07 Thread Mario Gudelj
Sounds like you need 2 types of users, those that have registered and those that haven't, and both have to be able to log in... Does this mean that you have two sets of usernames and passwords? Can you bypass the first login and simply send them to the reg form or do you have to check if the user i

Re: How can i use double login form in a django app redireting to two different pages

2013-01-07 Thread Aaron C. de Bruyn
You might take a look at the form wizard. You can create two separate forms, run them through the form wizard, and at the end process the results and log the user in. On Mon, Jan 7, 2013 at 12:06 PM, Okorie Emmanuel wrote: > Am new to django and i want to develop an e-registration portal. User

How can i use double login form in a django app redireting to two different pages

2013-01-07 Thread Okorie Emmanuel
Am new to django and i want to develop an e-registration portal. User is require to login with details from a scratch card(pin and serial no) and is redirected to a registration page to create an account and thus can view account infor using another login form this time django user login(auth). My