2023-05-16 10:50:42 +08:00

23 lines
919 B
PHP
Executable File

<?php include $app->getModuleRoot() . 'common/view/header.lite.html.php';?>
<main>
<div class="container">
<div id="mainContent" class='main-content'>
<div class='main-header'>
<h2><?php echo $lang->story->importCase;?></h2>
</div>
<form enctype='multipart/form-data' method='post' target='hiddenwin' style='padding: 20px 0 15px'>
<table class='table table-form w-p100'>
<tr>
<td><input type='file' name='file' class='form-control'/></td>
<td class='w-150px'><?php echo html::submitButton('', '', 'btn btn-primary btn-block');?></td>
</tr>
<tr>
<td colspan='2' class='text-left'><span class='label label-info'><?php echo $lang->story->importNotice?></span></td>
</tr>
</table>
</form>
</div>
</div>
</main>
<?php include $app->getModuleRoot() . 'common/view/footer.lite.html.php';?>