HEX
Server: Apache
System: Linux srv4.garantili.com.tr 4.18.0-477.21.1.lve.1.el8.x86_64 #1 SMP Tue Sep 5 23:08:35 UTC 2023 x86_64
User: ekspardev (1006)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //home/ekspardev/public_html/tubisad/rapor/src/pages/_includes/ui/dropzone.html
{% assign id = include.id %}
{% assign text = include.text  | default: "Text"%}
{% assign description = include.description | default: "Description" %}

<form class="dropzone" id="dropzone-{{ id }}" action="{{ site.base }}/" autocomplete="off" novalidate>
	<div class="fallback">
		<input name="file" type="file" {% if include.multiple %} multiple {% endif %} />
	</div>
	{% if include.custom %}
	<div class="dz-message">
		<h3 class="dropzone-msg-title">{{text}}</h3>
		<span class="dropzone-msg-desc">{{description}}</span>
	</div>
	{% endif %}
</form>

{% capture_global scripts %}
<script>
  // @formatter:off
  {% if jekyll.environment == 'development' %}window.tabler_dropzone = window.tabler_dropzone || {};{% endif %}

  document.addEventListener("DOMContentLoaded", function() {
    {% if jekyll.environment == 'development' %}window.tabler_dropzone["dropzone-{{ id }}"] = {% endif %}new Dropzone("#dropzone-{{ id }}")
  })
</script>
{% endcapture_global %}