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

23 lines
926 B
PHP
Executable File

<?php include $app->getModuleRoot() . 'common/view/header.lite.html.php';?>
<main id="main">
<div class="container">
<div id="mainContent" class='main-content'>
<div class='main-header'>
<h2><?php echo $lang->testcase->importCase;?></h2>
</div>
<form method='post' enctype='multipart/form-data' 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');?></td>
</tr>
<tr>
<td class='text-left' colspan='2'><span class='label label-info'><?php echo $lang->testcase->importNotice;?></span></td>
</tr>
</table>
</form>
</div>
</div>
</main>
<?php include $app->getModuleRoot() . 'common/view/footer.lite.html.php';?>