This month's report will be prepared.
TodayAn email will be sent to the customer.
TodayThe meeting will be held.
YesterdayConversation with users.
YesterdayPayment refund will be made to the customer.
20 min agoPayment form will be activated.
20 min agoSigned in with a different device.
YesterdayYour billing information is not active.
YesterdayYour subscription has expired.
TodayYour storage space is running low
TodayDropzoneJS is an open source library that provides drag’n’drop file uploads with image previews. Plugin page.
To use the plugin, you need to add the following files.
<!-- Css -->
<link rel="stylesheet" href="libs/dropzone/dropzone.css" type="text/css">
<!-- Javascript -->
<script src="libs/dropzone/dropzone.js"></script>
The typical way of using dropzone is by creating a form element with the class dropzone
:
<form action="/file-upload" class="dropzone">
...
</form>
That’s it. Dropzone will find all form elements with the class dropzone, automatically attach itself to it, and upload files dropped into it to the specified action
attribute. The uploaded files can be handled just as if there would have been a html input like this:
<input type="file" name="file" />