I have a question. So I found that you can upload an image in HTML and I used the following code:
<form name="imageUpload" method="post">
<input type="file" multiple accept = image/* name="uploadField"/>
</form>
However, in light of using AngularJS, I was wondering if there was a way to, upon uploading the image, display the image in another location on the screen. If someone can point me in the right direciton, tha would be great! Thanks!
It's more the javascript issue. As was answered here this answer. In angular it should look like this:
You could do something like I through together: Plunker