Index: uc_signup.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/uc_signup/uc_signup.module,v
retrieving revision 1.32
diff -u -p -r1.32 uc_signup.module
--- uc_signup.module	26 Aug 2009 14:10:17 -0000	1.32
+++ uc_signup.module	1 Sep 2009 18:50:17 -0000
@@ -52,6 +52,12 @@ function uc_signup_theme() {
     'uc_signup_event_text' => array(
       'arguments' => array('node' => (object)array(), ),
     ),
+    'uc_signup_has_account' => array(
+      'arguments' => array('message' => '', ),
+    ),
+    'uc_signup_needs_account' => array(
+      'arguments' => array('message' => '', ),
+    ),
   );
 }
 
@@ -243,13 +249,21 @@ function uc_signup_attendees_form_profil
             $form[$mail]['profile'][$key .'_'. $mail]['#default_value'] = $default;
             $form[$mail]['profile']['#tree'] = TRUE;
           }
+          drupal_add_css(drupal_get_path('module', 'uc_signup') . '/uc_signup.css');
+          $form[$mail]['has_account'] = array(
+            '#type' => 'markup',
+            '#value' => theme('uc_signup_needs_account', t('Please enter additional information about this attendee.')),
+            '#weight' => -4,
+          );
         }
       }
     }
     else {
+      drupal_add_css(drupal_get_path('module', 'uc_signup') . '/uc_signup.css');
       $form[$mail]['has_account'] = array(
         '#type' => 'markup',
-        '#value' => '<span class="uc_signup_has_account">'. t('We already have contact information for this attendee in our system.') .'</span>',
+        '#value' => theme('uc_signup_has_account', t('We already have contact information for this attendee in our system.')),
+        '#weight' => -4,
       );
     }
   }
@@ -266,6 +280,14 @@ function uc_signup_attendees_form_profil
   return $form;
 }
 
+function theme_uc_signup_needs_account($message = '') {
+  return '<span class="uc_signup_needs_account">'. $message .'</span>';
+}
+
+function theme_uc_signup_has_account($message = '') {
+  return '<span class="uc_signup_has_account">'. $message .'</span>';
+}
+
 function theme_uc_signup_user_events($events = array(), $nodes = array()) {
   foreach ($events as $key => $nid) {
     $list[$nid] = theme('uc_signup_event_text', $nodes[$nid]);
