Add elements demo (WIP)

This commit is contained in:
Saud Fatayerji
2023-09-04 17:07:29 -07:00
parent b12c1305ea
commit e998426b3b
4 changed files with 542 additions and 101 deletions

View File

@@ -136,7 +136,15 @@ public class GeneralWebController {
model.addAttribute("fonts", getFontNames());
return "sign";
}
@GetMapping("/add-elements")
@Hidden
public String addElements(Model model) {
model.addAttribute("currentPage", "sign");
model.addAttribute("fonts", getFontNames());
return "add-elements";
}
@Autowired
private ResourceLoader resourceLoader;