This commit is contained in:
daniel-j
2020-03-03 17:43:11 +01:00
commit 0dd2217c7a
6 changed files with 1059 additions and 0 deletions

20
upload.html Normal file
View File

@@ -0,0 +1,20 @@
<!doctype html>
<html>
<head>
<title>Send To Kobo</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<h1>Send to Kobo</h1>
<form action="/upload" method="post" enctype="multipart/form-data">
<input type="text" name="key" autocomplete="off" placeholder="Key" size="6" required /><br/>
<input type="file" name="file" accept=".epub,application/epub+zip" required /><br/>
<label><input type="checkbox" name="kepubify" checked /> Kepubify</label><br/>
<input type="submit" value="Upload" />
</form>
</body>
</html>