-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7491885
commit 220a743
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Compression App</title> | ||
</head> | ||
|
||
<body> | ||
<form id="compressionForm" enctype="multipart/form-data" method="post" action="/compress"> | ||
<label for="file">Select a file:</label> | ||
<input type="file" id="file" name="file" required><br><br> | ||
|
||
<label for="compressionType">Select compression type:</label> | ||
<select id="compressionType" name="compressionType" required> | ||
<option value="gzip">GZIP</option> | ||
<option value="deflate">Deflate</option> | ||
<option value="br">Brotli</option> | ||
</select><br><br> | ||
|
||
<button type="submit">Compress</button> | ||
</form> | ||
</body> | ||
|
||
</html> |