diff --git a/src/main/java/Team5/SmartTowns/Landmarks/LandmarksController.java b/src/main/java/Team5/SmartTowns/Landmarks/LandmarksController.java index a94feef88935a8d3ca71f6326bdb8f44cda6dd0e..59170c2e72df7ae96c49471b1b83bf272ae37492 100644 --- a/src/main/java/Team5/SmartTowns/Landmarks/LandmarksController.java +++ b/src/main/java/Team5/SmartTowns/Landmarks/LandmarksController.java @@ -55,3 +55,18 @@ public class LandmarksController { } + @Autowired + private localAuthorityRepository localAuthorityRepository; + @PostMapping("/local-auth-data1") + public ModelAndView localAuthSent(@Valid @ModelAttribute("localAuthority")localAuthority localAuthority, BindingResult bindingResult, Model model ) { + if (bindingResult.hasErrors()){ + ModelAndView modelAndView = new ModelAndView("local-auth-data.html", model.asMap()); + return modelAndView; + }else{// converts user input using the organisation constructor into a submittable format to the sql table + + localAuthority loc = new localAuthority(localAuthority.getLocalAuthorityName(), localAuthority.getAddress1(), localAuthority.getAddress2(), localAuthority.getCity(), localAuthority.getCounty(), localAuthority.getPostcode(), localAuthority.getWebsite()); + System.out.println(loc); + localAuthorityRepository.addLocalAuthority(loc); //add local authority to local authority table + ModelAndView modelAndView = new ModelAndView("redirect:/local-authorities"); + return modelAndView; + } diff --git a/src/main/java/Team5/SmartTowns/Organisation/organisationControllers.java b/src/main/java/Team5/SmartTowns/Organisation/organisationControllers.java index 14bd8685b8d055580621ca773b09873d4280a19a..67c3e981846d8db116725e27e8dc4c9feceb9a27 100644 --- a/src/main/java/Team5/SmartTowns/Organisation/organisationControllers.java +++ b/src/main/java/Team5/SmartTowns/Organisation/organisationControllers.java @@ -58,14 +58,14 @@ public class organisationControllers { List<addAddTowns> addtowns = addAddTownsRepository.getAllAddTowns(); if (bindingResult.hasErrors()) { - ModelAndView modelAndView = new ModelAndView("towns-data", model.asMap()); + ModelAndView modelAndView = new ModelAndView("towns-data.html", model.asMap()); return modelAndView; } else {// converts user input using the organisation constructor into a submittable format to the sql table addAddTowns tow = new addAddTowns(towns.getTownName(), towns.getAddress1(), towns.getAddress2(), towns.getCity(), towns.getCounty(), towns.getPostcode()); System.out.println(tow); addAddTownsRepository.addTown(tow); //add new towns to Add Towns table - ModelAndView modelAndView = new ModelAndView("redirect:/businesses"); + ModelAndView modelAndView = new ModelAndView("redirect:/towns"); return modelAndView; } } diff --git a/src/main/resources/templates/towns.html b/src/main/resources/templates/towns.html index ac04f7e366cdf420f6a8f094ce5da5f96784bc28..42fe1144151ff9b8d6625ae19a37c504cc959085 100644 --- a/src/main/resources/templates/towns.html +++ b/src/main/resources/templates/towns.html @@ -3,7 +3,7 @@ <head> <meta charset="UTF-8"> <title>Towns</title> - <link rel="stylesheet" th:href="@{css/addTownsPageStyle.css}"> + <link rel="stylesheet" th:href="@{css/landmarkFormStyle.css}"> <link rel="stylesheet" th:href="@{css/templatingstyle.css}"> </head> <header th:insert="~{/towns/Templating.html::header}"></header> @@ -16,7 +16,7 @@ <li th:text="${towns}"></li> </ul> </div> -<a href="/townForm"><button id="submit">Towns log in here</button></a> +<a href="/townsForm"><button id="submit">Towns log in here</button></a> </body> <footer th:insert="~{/towns/Templating.html::footer}"></footer> </html> \ No newline at end of file