It seems like there may be a CSS problem. When I programmatically create a dropzone box, I notice that the checkmark and x icons, along with other text, appear after the upload (see image link).
<div id="header-dropzone"></div>
$("#header-dropzone").dropzone({ url: "/header" })
However, when I simply use a form and initialize it with dropzone, the icons do not appear after the upload.
<form action="/header" class="dropzone"></form>
https://i.sstatic.net/jD295.png
I am puzzled as to why the jquery-style method does not hide those icons, especially since they are using the same CSS.