PDA

View Full Version : 10 secind registration, here is how:


veedee
08-06-2001, 03:30 PM
What I really really want is for the people who are bringing out these amazing hacks, to take 1 hour to bring my vision into reality.

What I would like is for potential users to be able to click the "register" button and get set with an option, quick registration where they click a button and it fills out all the options for them. After doing a user survey, the potential confusion meant that some of them put off registration.

Obviously i wont know how many people this put off, but a user lost is no good thing.

Can anyone tell me if they think thisis a good idea, or a crap one ?

Regards,

veedee

:)

veedee
08-09-2001, 05:17 AM
So, I take it that means people are busy working on it then ;) :D

Admin
08-09-2001, 05:47 AM
If I'm not mistaken, most of the options are set by radio buttons... that means that when you sign up, those are set by default to one of the options.

If you want to change the default options, simply edit the templates registeradult and registercoppa.
There you will see something like this:
<input type="radio" name="allowmail" value="yes" checked> yes
<input type="radio" name="allowmail" value="no"> no
If you want to invert it, put in
<input type="radio" name="allowmail" value="yes"> yes
<input type="radio" name="allowmail" value="no" checked> no
(Move 'checked' from one option to another)

:)

veedee
08-09-2001, 05:56 AM
Sweet, thanks I am known for being dumb. I am going to add this in now. I just want it to they see they registration page, click quick registration, which flicks all the options over and submits :)

thanks :)

DjSao
08-09-2001, 06:57 AM
Well you could send all the values as hidden fields, that way you can have only username, password and email on the registration page, the rest of the stuff the user can change later.

Admin
08-09-2001, 07:54 AM
Yeah, that's right.
Nice thinking. :)