--- regcode.module.old	2007-02-22 14:10:18.000000000 -0500
+++ regcode.module	2007-03-29 12:10:41.453125000 -0400
@@ -53,6 +53,23 @@ function regcode_perm() {
  *   An array containing form items to place on the module settings page
  */
 function regcode_settings() {
+
+  $form['regcode_title'] = array(
+    '#type' => 'textfield',
+    '#title' => t('Field Name'),
+    '#required' => TRUE,
+    '#default_value' => t('Registration Code'),
+    '#description' => t('This will change the name of the Registration Code field on the     New User Registration page.')
+  );
+
+  $form['regcode_desc'] = array(
+    '#type' => 'textarea',
+    '#title' => t('Description'),
+    '#required' => TRUE,
+    '#default_value' => t('Please enter your registration code.'),
+    '#description' => t('Change this to customize the descriptive text new users will see     beneath the Registration Code box on the New User Registration page.')
+  );
+
   $form['regcode_codes'] = array(
     '#type' => 'textarea',
     '#title' => t('Registration Code(s)'),
@@ -92,9 +109,9 @@ function regcode_user($op, &$edit, &$acc
         // Inject the registration code field into the registration form.
         $form['regcode_code'] = array(
           '#type' => 'textfield',
-          '#title' => t('Registration Code'),
+          '#title' => variable_get('regcode_title',''),
           '#required' => TRUE,
-          '#description' => t('Please enter your registration code.')
+          '#description' => variable_get('regcode_desc','')
         );
         return $form;
 
