I m a new bie in drupal and developing a social commmunity in drupal i need a ADVANCED REGISTRATION IN WHICH WE HAVE 2 TYPES OF REGISTRATION
1.)BASIC
2ADVANCED

When user goes to a registration link he is given a BASIC registraion form with some limited feilds
at the end of page we have a link for ADVANCED registration clicking on which he gets a ADVANCED registration form.
On BAISIC form there is 1 more button clinking on which user can register himself for a basic registration and on clicking on ADVANCED button next form is displayed to user

I am having problem in this can some1 help me out
i hv triend NODE PROFILE,CCK

HELP HELP HELP HELP HELP HELPHELP HELP HELPHELP HELP HELPHELP HELP HELPHELP HELP HELPHELP HELP HELPHELP HELP HELPHELP HELP HELPHELP HELP HELPHELP HELP HELPHELP HELP HELP

CommentFileSizeAuthor
#7 registration format.zip1.27 KBj.patrick1982

Comments

Phillip Mc’s picture

the simplest way of doing it is to follow these steps:

  1. Logout, go to your current (advanced) registration page and in your browser select VIEW SOURCE
  2. Copy the HTML of the form into a text editor like notepad or pspad
  3. Copy the HTML into a new file and strip it down to your BASIC registration form
  4. Create a new Drupal page...paste in the HTML and with path.module enabled, give it a URL alias of something like basic_reg. Insert a php snippet before the form to make sure the user isn't logged in already and has stumbled across the form by accident...e.g.
    <? php
     global $user;
    if (!$user->uid) {
    ?> // if the user isn't logged in
    Your HTML Form goes Here
    <?php } ?>
    

    Remember to select PHP as the Input Filter before submitting your page

  5. repeat the process for the advanced reg page
  6. Use a snippet from the handbook section by Dublin Drupaller to override your drupal login form to point to your advanced/basic forms..

hope that helps.

Phillip Mc’s picture

Title: USER REGISTRATION MODULE » help needed creating an advanced and basic user registration page override.

changing post title to be more descriptive.

j.patrick1982’s picture

Dear PHIK
But how to process this custom form i know we can make forms using pages and inputting the HTML in it
?

j.patrick1982’s picture

Do we have any module for this porpose ?
like making wizard like form multi step forms etc

Phillip Mc’s picture

I see. You need to setup your advanced registration first...the simplest way is to:

  1. Enable the profile module under SITE BUILDING -> MODULES
  2. go to USER MANAGEMENT -> PROFILES and click on add new field
  3. When adding new fields, select "Visible in user registration form." and for BASIC registration fields, mark as REQUIRED
  4. Once you're done with your advanced user registration form, you can follow the steps I posted earlier to seperate out the HTML by logging out and going to your REGISTER page

Strongly recommend you have a look at the Getting Started section of the handbook...your questions are already answered in the handbook and what the Getting Started handbook section helps is with knowing where to look for specific things. You could use Search, but, if you know what area of Drupal you are working with (in your case the User Management side of Drupal) you would be able to zoom into that information in the handbook if you have gone through the Getting Started section.

In other words, the Getting Started section of the handbook gives you a good overview of how drupal works and a better understanding of how to do things and where to look for help on specifics.

j.patrick1982’s picture

Thanks sir will get back to you if i have any prob further hope you dont mind
Regards
Abhay

j.patrick1982’s picture

StatusFileSize
new1.27 KB

I need the forms in this flow when user clicks on Advanced Registration form shud append in the form of the attached second form .
if User want basic registration then the use can do it by clicking the Regsiter Button without filling the advanced feilds

Please help me
I have gone through the above process but by this we can redirect the user to 2 different URLS but the functionality i need is may be can be cleared by the attahend documents please have a look
at the 2 forms

The help given in above process in just to change the layout or to generate additional feilds i need somthing difrerent please help as its 3 days i hv been working on this and hv not found any solution

Phillip Mc’s picture

Assigned: Unassigned » Phillip Mc
Status: Active » Closed (duplicate)

please stop posting multiple posts on the same question.

closing this issue...as yet another duplicate.

http://drupal.org/node/301023

j.patrick1982’s picture

sorry for duplicate posts i need its solution asap thats why searching solution for it

j.patrick1982’s picture

Assigned: Phillip Mc » Unassigned
Category: feature » support
Status: Closed (duplicate) » Active
kushi_iiim’s picture

Project: User Related Content » Form Defaults
Version: 5.x-1.0 » 5.x-1.x-dev
Phillip Mc’s picture

Status: Active » Closed (fixed)

kushi_iiim & j.patrick1982 (or is it the same person?)

please stop opening up multiple threads with the same question.

Closing this issue.

ellicitcs@aol.com’s picture

Check out RegFORM from http://regform.rmtemplates.com/
I use it, it work great.