Paid affiliate advertisement
drupal programmer to add another registration page to my site.
parklife4 - February 5, 2009 - 16:32
Hi
I am looking for a drupal programmer to add a additional sign up page to my site. This site currently has one sign up page but another is required for users of a different role, so the new sign up page will have different profile fields.
If anyone think that they could do this for me please let me know how much they would charge thanks.
tom

user/register, you're doing it wrong
Maybe you should explain to potential coders why you're trying to send people with a certain role, who haven't yet registered with your site, and therefore don't yet have a role, to a separate signup form based upon the role they don't have? If you could please explain in more detail what you're up to, you might get more replies?...
______________________________
Senpai
I would think extending the
I would think extending the Drupal core registration /user would be a better approach than creating a truly separate form. Essentially because you'd still want/need to collect the username and password and run it through the core validation and submit functions.
For instance, using hook_form_alter it is possible to do something like
example.com/user/register/role1
* username
* password
Name
Job Title
(Submit)
example.com/user/register/role2
* username
* password
Company Name
Industry
Your URL
You could also order and style the fields any way you'd like.
What would you like to do with the extra values collected on the form? If you want to create a node then I've used drupal_execute() or node_save() to create a user profile node in a couple previous projects.
See https://www.athletefocus.com/user/register for an example.
OrangeCoat.com