Custom Login

<?php
// Custom-Login nach Frank Bueltge http://bueltge.de/wordpress-27-login-design-anpassen/846/
// modifiziert nach http://themeshaper.com/forums/topic/bloginfotemplate_directory-returns-the-thematic-directory
function gr_custom_login() {
echo '<link rel="stylesheet" type="text/css" href="' . 'http://gr-01.de/ci/wp/gr-login.css" />';
}
add_action('login_head', 'gr_custom_login');
?>