oms-Exchange/Interfaces/OMS/import.tpl.php
2021-02-08 20:17:08 +01:00

24 lines
1.0 KiB
PHP

<?php
$lang = $this->getData('lang');
?>
<div class="row">
<div class="col-xs-12 col-md-6">
<section class="portlet">
<form id="fImport" method="POST" action="<?= \phpOMS\Uri\UriFactory::build('{/api}admin/exchange/import/profile?{?}&id={?id}&type=language&csrf={$CSRF}'); ?>">
<div class="portlet-head"><?= $this->printHtml($lang['Language']); ?> - OMS</div>
<div class="portlet-body">
<table class="layout wf-100" style="table-layout: fixed">
<tbody>
<tr><td><label for="iFile"><?= $this->getHtml('File'); ?></label>
<tr><td><input type="file" id="iFile" name="file" placeholder="&#xf040; <?= $this->getHtml('File'); ?>" required>
</table>
</div>
<div class="portlet-foot">
<input type="submit" value="<?= $this->getHtml('Import'); ?>">
</div>
</form>
</section>
</div>
</div>