23 lines
842 B
PHP
23 lines
842 B
PHP
<?php $title = 'Customs Broker'; ?>
|
|
|
|
<div class="container-fluid">
|
|
<h1 class="mt-4">Customs Broker</h1>
|
|
<p>This is the page for managing the Customs Broker company.</p>
|
|
<p>Here you will be able to upload Excel files to track sales, worker performance, and client performance.</p>
|
|
|
|
<div class="card">
|
|
<div class="card-header">
|
|
Upload Sales Data
|
|
</div>
|
|
<div class="card-body">
|
|
<form>
|
|
<div class="mb-3">
|
|
<label for="customsFile" class="form-label">Select Excel File (.xlsx)</label>
|
|
<input class="form-control" type="file" id="customsFile" accept=".xlsx">
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Upload and Process</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|