2018-03-06 05:06:44 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>OnionShare</title>
|
2018-03-06 06:03:24 -05:00
|
|
|
<link href="/static/img/favicon.ico" rel="icon" type="image/x-icon" />
|
|
|
|
<link href="/static/css/style.css" rel="stylesheet" type="text/css" />
|
2018-03-06 05:06:44 -05:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<header class="clearfix">
|
2018-03-06 06:03:24 -05:00
|
|
|
<img class="logo" src="/static/img/logo.png" title="OnionShare">
|
2018-03-06 05:06:44 -05:00
|
|
|
<h1>OnionShare</h1>
|
|
|
|
</header>
|
|
|
|
|
2018-03-13 08:50:26 -04:00
|
|
|
{% with messages = get_flashed_messages() %}
|
|
|
|
{% if messages %}
|
|
|
|
<ul class=flashes>
|
|
|
|
{% for message in messages %}
|
|
|
|
<li>{{ message }}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
|
|
|
|
2018-03-07 13:12:10 -05:00
|
|
|
<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>
|
2018-03-13 08:50:26 -04:00
|
|
|
<form method="post" enctype="multipart/form-data" action="/{{ slug }}/upload">
|
2018-03-07 13:12:10 -05:00
|
|
|
<p><input type="file" multiple /></p>
|
|
|
|
<p><input type="submit" class="button" value="Upload Files" /></p>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2018-03-06 05:06:44 -05:00
|
|
|
</body>
|
|
|
|
</html>
|