2018-03-06 05:06:44 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>OnionShare</title>
|
2019-05-22 23:07:35 -04:00
|
|
|
<link href="{{ static_url_path }}/img/favicon.ico" rel="icon" type="image/x-icon">
|
|
|
|
<link rel="stylesheet" rel="subresource" type="text/css" href="{{ static_url_path }}/css/style.css" media="all">
|
2018-03-06 05:06:44 -05:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<header class="clearfix">
|
2019-05-22 23:07:35 -04:00
|
|
|
<img class="logo" src="{{ static_url_path }}/img/logo.png" title="OnionShare">
|
2018-03-06 05:06:44 -05:00
|
|
|
<h1>OnionShare</h1>
|
|
|
|
</header>
|
|
|
|
|
2018-03-07 13:12:10 -05:00
|
|
|
<div class="upload-wrapper">
|
2019-05-22 23:07:35 -04:00
|
|
|
<p><img class="logo" src="{{ static_url_path }}/img/logo_large.png" title="OnionShare"></p>
|
2019-02-15 17:52:00 -05:00
|
|
|
|
2019-02-15 21:52:28 -05:00
|
|
|
<p class="upload-header">Send Files</p>
|
|
|
|
<p class="upload-description">Select the files you want to send, then click "Send Files"...</p>
|
|
|
|
|
|
|
|
<div id="uploads"></div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<ul id="flashes" class="flashes">
|
|
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
|
|
{% if messages %}
|
|
|
|
{% for category, message in messages %}
|
|
|
|
<li class="{{ category }}">{{ message }}</li>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
|
|
|
</ul>
|
2018-03-07 13:12:10 -05:00
|
|
|
</div>
|
2019-02-15 21:52:28 -05:00
|
|
|
|
2019-05-21 13:18:40 -04:00
|
|
|
<form id="send" method="post" enctype="multipart/form-data" action="/upload">
|
2019-02-22 21:16:06 -05:00
|
|
|
<p><input type="file" id="file-select" name="file[]" multiple /></p>
|
|
|
|
<p><button type="submit" id="send-button" class="button">Send Files</button></p>
|
|
|
|
</form>
|
|
|
|
|
2018-03-07 13:12:10 -05:00
|
|
|
</div>
|
2019-05-22 23:07:35 -04:00
|
|
|
<script src="{{ static_url_path }}/js/jquery-3.4.0.min.js"></script>
|
|
|
|
<script async src="{{ static_url_path }}/js/receive.js"></script>
|
2018-03-06 05:06:44 -05:00
|
|
|
</body>
|
|
|
|
</html>
|