Skip to: site menu |main content

Welcome to my personal site. If You have any question or suggestion please feel free to contact me from contact page.

Advertisements

Contact me to place your Ads Here..

Powered by Drupal, an open source content management system

Syndicate

Syndicate content

cutom

Customizing the drupal user registration form

--updated added code also--
you can define template for your form in template.php

/**
* @desc ex
*/
function inderin_theme() {
      $themes= array(       
             'user_register' => array(
              'template' => 'user-register',
              'arguments' => array('form' => NULL)
            ),
      );
      return $themes;
}

Syndicate content

Back to top