27 lines
956 B
PHP
27 lines
956 B
PHP
<?php include '../../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->fileImport;?></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 align='center'>
|
|
<input type='file' name='file' class='form-control'/>
|
|
</td>
|
|
<td class="w-150px">
|
|
<?php echo html::select('encode', $config->charsets[$this->cookie->lang], 'utf-8', "class='form-control'");?>
|
|
</td>
|
|
<td class="w-150px">
|
|
<?php echo html::submitButton('', '', 'btn btn-primary btn-block');?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<?php include '../../common/view/footer.lite.html.php';?>
|