| 12 | | echo $form->labelTag('Acquaintance/quote', 'Quote:' ); |
| 13 | | echo $html->input('/quote', array("size" => 60, "maxlength" => 150)); |
| 14 | | echo $html->tagErrorMsg('/quote', 'Title is required.'); |
| | 12 | echo $form->labelTag('Acquaintance/name', 'Name:' ); |
| | 13 | echo $html->input('Acquaintance/name', array("size" => 50, "maxlength" => 50)); |
| | 14 | echo $html->tagErrorMsg('Acquaintance/name', 'Title is required.'); |
| 16 | | echo $form->labelTag('/quote', 'Author:' ); |
| 17 | | echo $html->input('/author', array("size" => 25, "maxlength" => 70)); |
| 18 | | echo $html->tagErrorMsg('/author', 'Author is required.'); |
| | 16 | echo $form->labelTag('Acquaintance/url', 'Link:' ); |
| | 17 | echo $html->input('Acquaintance/url', array("size" => 65, "maxlength" => 220)); |
| | 18 | echo $html->tagErrorMsg('Acquaintance/url', 'Link is required.'). '<br />'; |
| | 19 | |
| | 20 | echo $html->submit('Save'); |