Gossamer Forum
Home : Products : DBMan : Installation :

carrying over Userid from 'create account' screen

Quote Reply
carrying over Userid from 'create account' screen
When a new user creates an account in DBMAN, he inputs his username and password (and email address in my setup)...he is then taken to the LOGIN screen where he must re-type his username (and password). I want to automate that process...I would like the username to already be filled in on the Login page (for new users who are coming directly from the Create Account page only). Any ideas?

Thanks!
(you guys are right...this board is really awesome!)
Quote Reply
Re: carrying over Userid from 'create account' screen In reply to
In sub html_signup_success change

<input type="text" name="userid">

to

<input type="text" name="userid" value="$in{'userid'}">

That should do it.


------------------
JPD
Quote Reply
Re: carrying over Userid from 'create account' screen In reply to
Thanks! Works like a charm!