This commit is contained in:
Anthony Stirling
2023-05-02 22:59:16 +01:00
parent 9af537c985
commit fd246aac93
2 changed files with 293 additions and 0 deletions

View File

@@ -66,4 +66,15 @@ public class GeneralWebController {
model.addAttribute("currentPage", "split-pdfs");
return "split-pdfs";
}
@GetMapping("/sign")
@Hidden
public String signForm(Model model) {
model.addAttribute("currentPage", "sign");
return "sign";
}
}