zentaopms/extension/max/host/view/changestatus.html.php
2023-05-16 10:50:42 +08:00

21 lines
708 B
PHP

<?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
<?php include $app->getModuleRoot() . 'common/view/kindeditor.html.php';?>
<div id='mainContent' class='main-content'>
<div class='main-header'>
<h2><?php echo $reason;?></h2>
</div>
<form method='post' target='hiddenwin'>
<table class='table table-form' id='tabReason'>
<tr>
<td class='required'><?php echo html::textarea('reason', '', "class='form-control'");?></td>
<tr>
<tr>
<td class='text-center form-actions'>
<?php echo html::submitButton();?>
</td>
</tr>
</table>
</form>
</div>
<?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>