So, basically, I need to upload a single image, save it to localStorage, then display it on the next page.
Currently, I have my HTML file upload:
<
You could serialize the image into a Data URI. There's a tutorial in this blog post. That will produce a string you can store in local storage. Then on the next page, use the data uri as the source of the image.