| 123456789101112131415161718192021222324252627282930 |
- <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
- <style>
- #main{min-width: 780px !important; padding: unset;}
- #main>.container {padding: unset;}
- </style>
- <div id='mainContent' class='main-content'>
- <div class='center-block'>
- <div class='main-header'>
- <h2><?php echo $title;?></h2>
- </div>
- </div>
- <form id='ajaxForm' method='post' target='hiddenwin' action='<?php echo inlink('edit', "screenID={$screen->id}");?>'>
- <table class='table table-form'>
- <tr>
- <th class='w-100px'><?php echo $lang->screen->name;?></th>
- <td><?php echo html::input('name', $screen->name, "class='form-control'")?></td>
- </tr>
- <tr>
- <th><?php echo $lang->screen->desc;?></th>
- <td><?php echo html::textarea('desc', $screen->desc, "class='form-control' rows='5'");?></td>
- </tr>
- <tr>
- <td colspan='2' class='text-center form-actions'>
- <?php echo html::submitButton();?>
- </td>
- </tr>
- </table>
- </form>
- </div>
- <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>
|