edit.html.php 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
  2. <style>
  3. #main{min-width: 780px !important; padding: unset;}
  4. #main>.container {padding: unset;}
  5. </style>
  6. <div id='mainContent' class='main-content'>
  7. <div class='center-block'>
  8. <div class='main-header'>
  9. <h2><?php echo $title;?></h2>
  10. </div>
  11. </div>
  12. <form id='ajaxForm' method='post' target='hiddenwin' action='<?php echo inlink('edit', "screenID={$screen->id}");?>'>
  13. <table class='table table-form'>
  14. <tr>
  15. <th class='w-100px'><?php echo $lang->screen->name;?></th>
  16. <td><?php echo html::input('name', $screen->name, "class='form-control'")?></td>
  17. </tr>
  18. <tr>
  19. <th><?php echo $lang->screen->desc;?></th>
  20. <td><?php echo html::textarea('desc', $screen->desc, "class='form-control' rows='5'");?></td>
  21. </tr>
  22. <tr>
  23. <td colspan='2' class='text-center form-actions'>
  24. <?php echo html::submitButton();?>
  25. </td>
  26. </tr>
  27. </table>
  28. </form>
  29. </div>
  30. <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>