Skip to content

Instantly share code, notes, and snippets.

@wrburgess
Created April 25, 2012 17:12
Show Gist options
  • Select an option

  • Save wrburgess/2491381 to your computer and use it in GitHub Desktop.

Select an option

Save wrburgess/2491381 to your computer and use it in GitHub Desktop.
Drupal 7: Create user-login page theme suggestion
// Insert into your theme > template.php file
<?php
function hook_theme($existing, $type, $theme, $path){
return array(
'user_login' => array(
'render element' => 'form',
'template' => 'user-login',
),
);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment