I want to display the image uploaded in home.html to another page named result.html.
<div class="custom-file">
<input type="file" class="custom-file-input" name="myfile" onchange="readURL(this);">
<label class="custom-file-label" for="customFile" name="myfile">Choose file</label>
</div>
<div style="text-align: center;">
<input type="submit" class="mybtn" onclick="showInput();">
</div>
I want to show the uploaded image with name="myfile" in the result.html page. How should i do it?