SpeedyF/views/index.ejs

28 lines
953 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<title>SpeedyF - PDF Compressor</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/style.css">
</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="quality">Select Quality:</label>
<select name="quality" id="quality">
<option value="print">Print</option>
<option value="screen" selected>Screen</option>
<option value="monochrome">Monochrome</option>
</select><br><br>
<input type="submit" value="Upload File" name="submit">
</form>
</body>
</html>