2015-09-24 07:44:49 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
2015-10-01 05:37:00 +02:00
|
|
|
{% block head %}
|
2015-10-30 23:36:47 +01:00
|
|
|
<link href='{{ sitepath }}static/css/dropzone.css' media='screen, projection' rel='stylesheet' type='text/css'>
|
2015-10-01 05:37:00 +02:00
|
|
|
{% endblock %}
|
2015-09-24 22:04:51 +02:00
|
|
|
|
2020-03-08 03:52:29 +01:00
|
|
|
{% block content %}
|
2015-09-24 22:04:51 +02:00
|
|
|
<div id="fileupload">
|
2020-03-08 03:52:29 +01:00
|
|
|
<form action="{{ sitepath }}upload" class="dropzone" id="dropzone" method="POST" enctype="multipart/form-data"
|
|
|
|
data-maxsize="{{ maxsize }}" data-auth="{{ auth }}">
|
2015-10-01 05:37:00 +02:00
|
|
|
<div class="fallback">
|
2015-10-08 06:19:22 +02:00
|
|
|
<input id="fileinput" name="file" type="file" /><br />
|
|
|
|
<input id="submitbtn" type="submit" value="Upload">
|
2015-10-01 05:37:00 +02:00
|
|
|
</div>
|
|
|
|
|
2015-10-01 18:46:34 +02:00
|
|
|
<div id="dzone" class="dz-default dz-message">
|
2019-01-11 18:09:54 +01:00
|
|
|
<span>Click or Drop file(s) or Paste image</span>
|
2015-10-01 05:37:00 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="choices">
|
2020-03-08 03:52:29 +01:00
|
|
|
<span class="hint--top hint--bounce"
|
|
|
|
data-hint="Replace the filename with random characters. The file extension is retained">
|
|
|
|
<label><input {% if forcerandom %} disabled {% endif %} name="randomize" id="randomize" type="checkbox"
|
2021-02-28 03:53:29 +01:00
|
|
|
{% if (default_randomize && !( forcerandom)) || forcerandom %} checked {% endif %} /> Randomize filename</label>
|
2020-03-08 02:52:07 +01:00
|
|
|
</span>
|
|
|
|
|
2015-10-01 05:37:00 +02:00
|
|
|
<div id="expiry">
|
2018-06-09 19:31:44 +02:00
|
|
|
<label>File expiry:
|
2020-03-08 02:52:07 +01:00
|
|
|
<select name="expires" id="expires">
|
|
|
|
{% for expiry in expirylist %}
|
2021-10-09 17:36:53 +02:00
|
|
|
<option value="{{ expiry.Seconds }}" {% if (expiry.Seconds == expirydefault) %} selected {% endif %}>
|
2020-03-08 03:52:29 +01:00
|
|
|
{{ expiry.Human }}</option>
|
2020-03-08 02:52:07 +01:00
|
|
|
{% endfor %}
|
|
|
|
</select>
|
2015-10-04 09:14:21 +02:00
|
|
|
</label>
|
2015-09-24 22:04:51 +02:00
|
|
|
</div>
|
2021-02-22 19:32:38 +01:00
|
|
|
{% if disable_access_key != true %}
|
2020-03-08 02:52:07 +01:00
|
|
|
<div id="access_key">
|
2020-03-08 03:52:29 +01:00
|
|
|
<span class="hint--top hint--bounce"
|
|
|
|
data-hint="Require password to access (this does not encrypt the file but only limits access)">
|
2020-03-08 02:52:07 +01:00
|
|
|
<label>
|
2020-03-08 03:52:29 +01:00
|
|
|
<input type="checkbox" id="access_key_checkbox" />
|
2020-03-08 02:52:07 +01:00
|
|
|
<span id="access_key_text">Require access password</span>
|
|
|
|
</label>
|
2020-03-08 03:52:29 +01:00
|
|
|
<input id="access_key_input" name="access_key" type="text" placeholder="Access password" />
|
2020-03-08 02:52:07 +01:00
|
|
|
</span>
|
2020-03-01 01:43:53 +01:00
|
|
|
</div>
|
2021-02-22 19:32:38 +01:00
|
|
|
{% endif %}
|
2015-10-01 05:37:00 +02:00
|
|
|
</div>
|
|
|
|
<div class="clear"></div>
|
|
|
|
</form>
|
|
|
|
<div id="uploads"></div>
|
2015-10-04 23:13:29 +02:00
|
|
|
<div class="clear"></div>
|
2015-09-24 22:04:51 +02:00
|
|
|
</div>
|
2015-09-25 06:58:38 +02:00
|
|
|
|
2015-10-30 23:36:47 +01:00
|
|
|
<script src="{{ sitepath }}static/js/dropzone.js"></script>
|
|
|
|
<script src="{{ sitepath }}static/js/upload.js"></script>
|
2020-03-08 03:52:29 +01:00
|
|
|
{% endblock %}
|