summaryrefslogtreecommitdiffstats
path: root/wp-signup.php
diff options
context:
space:
mode:
Diffstat (limited to 'wp-signup.php')
-rw-r--r--wp-signup.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/wp-signup.php b/wp-signup.php
index dc25897..9c0efee 100644
--- a/wp-signup.php
+++ b/wp-signup.php
@@ -11,7 +11,7 @@ if( $current_blog->domain != $current_site->domain ) {
die();
}
-get_header();
+function wpmu_signup_stylesheet() {
?>
<style type="text/css">
form { margin-top: 2em; }
@@ -23,6 +23,12 @@ form { margin-top: 2em; }
background-color: #f66;
}
</style>
+<?php
+}
+
+add_action( 'wp_head', 'wpmu_signup_stylesheet' );
+get_header();
+?>
<div id="content" class="widecolumn">
<?php
function show_blog_form($blog_id = '', $blog_title = '', $errors = '') {