mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
39 lines
1.3 KiB
HTML
39 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>OnionShare</title>
|
|
<link href="/static/img/favicon.ico" rel="icon" type="image/x-icon" />
|
|
<link href="/static/css/style.css" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
<body>
|
|
|
|
<header class="clearfix">
|
|
<img class="logo" src="/static/img/logo.png" title="OnionShare">
|
|
<h1>OnionShare</h1>
|
|
</header>
|
|
|
|
<div class="upload-wrapper">
|
|
<div class="upload">
|
|
<p><img class="logo" src="/static/img/logo_large.png" title="OnionShare"></p>
|
|
<p class="upload-header">Send Files</p>
|
|
<p class="upload-description">Select the files you want to send, then click "Send Files"...</p>
|
|
<form method="post" enctype="multipart/form-data" action="{{ upload_action }}">
|
|
<p><input type="file" name="file[]" multiple /></p>
|
|
<p><input type="submit" class="button" value="Send Files" /></p>
|
|
<div>
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
{% if messages %}
|
|
<ul class=flashes>
|
|
{% for category, message in messages %}
|
|
<li class="{{ category }}">{{ message }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% endwith %}
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|