mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-27 11:43:01 -03:00
35 lines
809 B
HTML
35 lines
809 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<style type="text/css">
|
||
|
body {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
h1 {
|
||
|
background-color: #FFC4D5;
|
||
|
color: #000000;
|
||
|
text-align: center;
|
||
|
font-size: 30px;
|
||
|
margin: 0;
|
||
|
padding: 10px;
|
||
|
}
|
||
|
h1 .skull {
|
||
|
font-size: 40px;
|
||
|
font-weight: bold;
|
||
|
color: #FF0048;
|
||
|
}
|
||
|
</style>
|
||
|
<script>
|
||
|
function send(msg) {
|
||
|
document.title = "null";
|
||
|
document.title = msg;
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1><span class="skull">☠</span> filename.zip</h1>
|
||
|
<p id="uptime-value"></p>
|
||
|
</body>
|
||
|
</html>
|