-
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
Basil-Panasiuk
committed
Apr 26, 2024
1 parent
c46de53
commit 1888316
Showing
2 changed files
with
118 additions
and
2 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,25 @@ | ||
<!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 method="POST" action="/compress" enctype="multipart/form-data"> | ||
<label> | ||
Select a file | ||
<input type="file" name="file" /> | ||
</label> | ||
<label> | ||
Compression type: | ||
<select name="compressionType"> | ||
<option value="gzip" default>gzip</option> | ||
<option value="deflate">deflate</option> | ||
<option value="br">br</option> | ||
</select> | ||
</label> | ||
<button>Submit</button> | ||
</form> | ||
</body> | ||
</html> |
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