I'm working on an upload option, now I'm working on the lay-out of my file input. What I want to make is an input where the filename changes with the browse of the file input.
Code Now
<form action="" method="post" enctype="multipart/form-data">
<label for="file">Filename:</label><input type="file" name="file" id="file"><br>
<input class="btn btn-success btn-block uploadform" type="submit" name="submit" value="Submit">
</form>
What I get now
https://scrshot.eu/s/4a157f9.png
What I want to get
https://scrshot.eu/s/b73c306.png - It has to be still clickable
Does somebody has an idea how to do this?
Thanks.