commit 844f05243aad49bcfa13c4980c3ecd7acc810b1a
parent 801ec9bb9f1f5212bb03d19f909efedd8f587801
Author: Nixx <nixx@firemail.cc>
Date: Sun, 13 Feb 2022 13:25:39 +0000
Name change, text tweaks
Diffstat:
2 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/README b/README
@@ -1,5 +1,5 @@
-MICROHOST
-=========
+TINYBOX
+=======
An extremely primitive file uploader and host, written in PHP. It does not
remove files after a period of time, this must be done manually.
diff --git a/index.php b/index.php
@@ -44,7 +44,9 @@ if($_FILES){
}else{
?>
<html>
- <title>microhost</title>
+ <head>
+ <title>tinybox</title>
+ </head>
<body>
<pre>curl -F upload='@somefile.ext' <?php echo $url; ?></pre>
@@ -53,6 +55,8 @@ if($_FILES){
<input type="file" name="upload" />
<input type="submit" value="Upload" />
</form>
+
+ <p><a href="https://git.concealed.world/tinybox/files.html">Git Repository</a></p>
</body>
</html>
<?php