Replace the WordPress logo on the login page with your own.
<?php
function ccd_custom_login_logo() {
echo '
<style>
.login h1 a {
background-image: url( '$image_url' ) !important;
}
</style>
';
}
add_action( 'login_head', 'ccd_custom_login_logo' );
?>
WordPress Snippet