RE: How can i use double login form in a django app redireting to

2013-01-07 Thread Babatunde Akinyanmi
two different pages MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit > My problem is how to authencate the first login form > that wil redirect user to the registration page using the > scratch card > info(pin, serial no) because i intend storing the scr

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