SpeedyF/src/views/index.ejs

25 lines
786 B
Plaintext
Raw Normal View History

2024-05-01 01:14:51 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>SpeedyF - PDF Compressor</title>
</head>
<body>
<h1>SpeedyF</h1>
<h2>(Read sPee-Dee-efF)</h2>
Compresses PDF files on the Web
<form action="/new_job" method="post" enctype="multipart/form-data">
<input type="file" name="file" id="file" accept=".pdf"><br><br>
<label for="category">Select Category:</label>
<select name="quality" id="quality">
<option value="print">Print</option>
<option value="screen">Screen</option>
<option value="monochrome">Monochrome</option>
</select><br><br>
<input type="submit" value="Upload File" name="submit">
</form>
</body>
</html>