RT #68377
[catagits/Catalyst-Manual.git] / lib / Catalyst / Manual / Tutorial / 09_AdvancedCRUD / 09_FormFu.pod
index a566e92..68f0ea2 100644 (file)
@@ -107,7 +107,7 @@ following method:
     
         # Get the form that the :FormConfig attribute saved in the stash
         my $form = $c->stash->{form};
-  
+    
         # Check if the form has been submitted (vs. displaying the initial
         # form) and if the data passed validation.  "submitted_and_valid"
         # is shorthand for "$form->submitted && !$form->has_errors"
@@ -134,7 +134,7 @@ following method:
             # Add the authors to it
             $select->options(\@authors);
         }
-        
+    
         # Set the template
         $c->stash(template => 'books/formfu_create.tt2');
     }
@@ -208,11 +208,7 @@ the file:
         display: block;
     }
 
-These changes will display form elements vertically.  Note that the 
-existing definition of the C<.error> class is pulling the color scheme 
-settings from the C<root/lib/config/col> file that was created by the 
-TTSite helper.  This allows control over the CSS color settings from a 
-single location.
+These changes will display form elements vertically.
 
 
 =head2 Create a Template Page To Display The Form
@@ -632,7 +628,7 @@ Apache config files.
        type   Submit
    </elements>
    indicator   submit
-   
+
 
 =head1 AUTHOR