18 lines
759 B
PHP
18 lines
759 B
PHP
<?php echo form_open_multipart(base_url() ."DataStunting/proses_import_excel") ?>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="card card-cascade narrower z-depth-1 animated bounceInDown">
|
|
<div class="view view-cascade gradient-card-header blue-gradient narrower py-2 mx-4 mb-3 d-flex justify-content-between align-items-center">
|
|
<h4><a href="" class="white-text mx-3">Form Import Excel</a></h4>
|
|
</div>
|
|
<div class="card-body m-t-20">
|
|
<input type="file" name="fileExcel">
|
|
</div>
|
|
<div class="card-footer p-20 m-10">
|
|
<button type="submit">Submit</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<?php echo form_close() ?>
|