Send files with pure HTML
<form action="https://plus.dropzone.dev/_p/{YOUR_PROJECT_ID}"
method="post"
enctype="multipart/form-data"><!-- << Note the enctype here -->
<input type="text" name="name" />
<input type="text" name="email" />
<input type="file" name="profilePicture" />
<input type="file" name="bannerImage" />
<button type="submit">Send</button>
</form>Last updated