Created
April 25, 2012 17:12
-
-
Save wrburgess/2491381 to your computer and use it in GitHub Desktop.
Drupal 7: Create user-login page theme suggestion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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