<?php
/**
 * defines custom login header and footer to provide a themed login page
 */
// Rather than duplicating this HTML all over the place, we'll stick it in function
function login_header($title = 'Login', $message = '', $wp_error = '') {
	get_header();
	get_sidebar();
	?>
	<div id="main">
<div id="login"><h2><?php echo $title ?></h2>
<?php
	login_header_error($message, $wp_error);
} // End of login_header()

function login_footer() {
?>
	</div>
<?php
	get_footer();
}
?>
