').addClass('upload-meta')
- .append($cancel_button)
- .append($upload_filename)
- .append($upload_status)
- )
- .append($progress);
-
- $cancel_button.click(function () {
- // Abort the upload, and remove the upload div
- ajax.abort();
- $upload_div.remove()
- });
-
- ajax.$upload_div = $upload_div;
- $('#uploads').append($upload_div);
-
- // Send the request
- ajax.open('POST', '/upload-ajax', true);
- ajax.send(formData);
- });
-});
diff --git a/Resources/templates/receive.html b/Resources/templates/receive.html
deleted file mode 100644
index 386f4ae..0000000
--- a/Resources/templates/receive.html
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
- {% if not disable_text and not disable_files %}
-
-
You can submit files, a message, or both.
-
Remember, you are accessing this service anonymously! Provide contact info if you want a response to the message.
- {% endif %}
- {% if not disable_text and disable_files %}
-
-
You can submit a message.
-
Remember, you are accessing this service anonymously! Provide contact info if you want a response to the message.
- {% endif %}
- {% if disable_text and not disable_files %}
-
-
You can submit files
- {% endif %}
-
-
-
-
-
- {% with messages = get_flashed_messages(with_categories=true) %}
- {% if messages %}
- {% for category, message in messages %}
- - {{ message }}
- {% endfor %}
- {% endif %}
- {% endwith %}
-
-
-
-
-
-