Index: modules/openid/openid.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/openid/openid.module,v
retrieving revision 1.44
diff -u -r1.44 openid.module
--- modules/openid/openid.module	17 Mar 2009 15:26:29 -0000	1.44
+++ modules/openid/openid.module	8 Apr 2009 15:34:40 -0000
@@ -108,15 +108,30 @@
     '#weight' => 1,
   );
 
-  $form['links']['#weight'] = 2;
+  $form['links']['#weight'] = 3;
 
   $form['openid_identifier'] = array(
     '#type' => 'textfield',
-    '#title' => t('Log in using OpenID'),
+    '#title' => t('Your OpenID'),
     '#size' => $form['name']['#size'],
     '#maxlength' => 255,
     '#weight' => -1,
-    '#description' => l(t('What is OpenID?'), 'http://openid.net/', array('external' => TRUE)),
+    '#description' => t('Enter your OpenID URL. For example, to log in with your Drupal OpenID use %openid-example.', array('%openid-example' => 'openid.drupal.org/username')),
+  );
+  $form['openid_fieldset'] = array(
+    '#type' => 'fieldset',
+    '#title' => t('What is OpenID?'),
+    '#collapsible' => TRUE,
+    '#collapsed' => TRUE,
+    '#weight' => 2,
+    '#attributes' => array('id' => 'openid-help'),
+  );
+  
+  $form['openid_fieldset']['openid_help'] = array(
+    '#prefix' => '<p>',
+    '#markup' => t('An OpenID allows you to log in to different websites using one user name. OpenID providers include AOL, Flickr, and Yahoo, and are listed at <a href="@openid-providers">the OpenID website</a>. When you log in with an OpenID for the first time, you will be redirected to the site owning the account you wish to use to identify yourself. After granting permission to allow @site-name to use your account, you will be redirected back to @site-name to finish registration.', array('@openid-providers' => url('http://openid.net/get/', array('external' => TRUE)), '@site-name' => variable_get('site_name', 'Drupal'))),
+    '#suffix' => '</p>',
+    '#weight' => 2,
   );
   $form['openid.return_to'] = array('#type' => 'hidden', '#value' => url('openid/authenticate', array('absolute' => TRUE, 'query' => drupal_get_destination())));
 }
