index.phtml 492 B

12345678910111213141516
  1. <div class="ui-widget ui-widget-content block-shadow simple-formblock clearfix padded-strong preferences">
  2. <h2 style="float:left"><?php echo _("Preferences") ?></h2>
  3. <?php $baseUrl = Application_Common_OsPath::getBaseDir(); ?>
  4. <form method="post" id="pref_form" enctype="multipart/form-data">
  5. <?php echo $this->form->getElement('submit')->render() ?>
  6. <div style="clear:both"></div>
  7. <?php
  8. echo $this->statusMsg;
  9. echo $this->form;
  10. ?>
  11. <br />
  12. </form>
  13. </div>