-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
executable file
·44 lines (39 loc) · 1.57 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php include 'vars.php'; ?>
<!DOCTYPE html>
<html lang="fr" dir="ltr">
<head>
<meta charset="utf-8">
<title>filedropper.eu</title>
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="stylesheet" href="styles.css" media="screen and (min-device-width: 800px)">
<link rel="stylesheet" href="styles.css" media="screen and (max-device-width: 800px)">
</head>
<body>
<h1>>filedropper.eu<span class="blink">_</span></h1>
<?php if($info != ''){ ?><h2 class="info"><?=$info ?></h2><?php } ?>
<input type="hidden" name="MAX_FILE_SIZE" value="5000000000" />
<label class="checkbox">🕵 Keep my IP private <input type="checkbox" name="ip_private"/></label>
<label class="checkbox">🔐 Keep my link private <input type="checkbox" name="link_private"></label>
<input name="file" type="file" id="file-input"/>
<label for="file-input" id="file-label" draggable="true">
<div id="upload-box">
<span id="dynamic-status">Click or drag a file here</span>
<span id="static-status"></span>
</div>
</label>
<br>
<div class="table">
<a class="tr">
<div class="th">filename</div>
<div class="th">size</div>
<div class="th">date</div>
<div class="th">IP</div>
</a>
<div id="file-list">
</div>
</div>
<br><br>
<a href="https://github.com/fullfox/filedropper"><p><img src="https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png" width="28px" class="logo">fullfox</p></a>
<script src="index.js" charset="utf-8"></script>
</body>
</html>