I am not good at front-end at all but some circumstances made me to learn it.
In my app I need to upload file. I do something like this
<div class="modal-footer">
<div class="col-md-12">
<form action="" method="post" enctype="multipart/form-data">
<div class="col-md-6">
<input type="file" name="file" id="file" class="btn btn-primary btn-sm" display: block;
cursor: pointer />
<input type="submit" class="btn btn-primary btn-success btn-sm" style="margin-top: 10px; margin-right: 1500px" />
</div>
</form>
</div>
<button class="btn btn-primary" data-dismiss="modal" id="conventionClick">Apply changes</button>
</div>
But the result is awful. I need to get rid of this
How do I remove "choose file" && "no file chosen". I just want a simple button which opens files explorer.
Thanks!