42 lines
1.1 KiB
HTML
42 lines
1.1 KiB
HTML
{% extends "shell.html" %}
|
|
{% block body %}
|
|
<h1 class="title">
|
|
QuadFile
|
|
</h1>
|
|
<form action="" id="form" name="fileForm" method="post" enctype="multipart/form-data" class="uploadForm">
|
|
<div id="uploadButton" class="uploadButton">
|
|
<p id="uploadText">
|
|
Click to select a file
|
|
</p>
|
|
<input id="file" type="file" name="file">
|
|
</div>
|
|
<input type="hidden" name="source" value="web">
|
|
</form>
|
|
<p class="note">This storage is not permanent, check the about page for details</p>
|
|
<ul class="links">
|
|
<li>
|
|
<a href="/about">About</a>
|
|
</li>
|
|
<li>
|
|
<a href="/terms">Terms</a>
|
|
</li>
|
|
<li>
|
|
<a href="/privacy">Privacy</a>
|
|
</li>
|
|
<li>
|
|
<a href="/faq">FAQ</a>
|
|
</li>
|
|
<li>
|
|
<a href="/dmca">Abuse</a>
|
|
</li>
|
|
</ul>
|
|
<script>
|
|
document.getElementById("file").onchange = function() {
|
|
document.getElementById("uploadText").innerHTML = "Uploading...";
|
|
var button = document.getElementById("uploadButton");
|
|
button.className = button.className + " uploading";
|
|
document.getElementById("form").submit();
|
|
};
|
|
</script>
|
|
{% endblock %}
|