Add rotate and compress (#7)

* Add files via upload

* Update build.gradle

* Update general.css
This commit is contained in:
Anthony Stirling
2023-01-29 17:06:53 +00:00
committed by GitHub
parent b56e5a0e05
commit cd4bd2a796
15 changed files with 496 additions and 106 deletions

View File

@@ -33,13 +33,13 @@ public class PdfController {
@GetMapping("/merge-pdfs")
public String hello(Model model) {
model.addAttribute("message", "Hello, World!");
model.addAttribute("currentPage", "merge-pdfs");
return "merge-pdfs";
}
@GetMapping("/home")
public String home(Model model) {
model.addAttribute("message", "Hello, World!");
model.addAttribute("currentPage", "home");
return "home";
}