diff --git a/src/main/java/Team5/SmartTowns/landmarks/LandmarksController.java b/src/main/java/Team5/SmartTowns/landmarks/LandmarksController.java index 703545ea59da82ecad9d63ab03b6e432a797f94e..773fe4e95e0f689bd398736d2f848ae602ed53a3 100644 --- a/src/main/java/Team5/SmartTowns/landmarks/LandmarksController.java +++ b/src/main/java/Team5/SmartTowns/landmarks/LandmarksController.java @@ -88,7 +88,7 @@ public class LandmarksController { placesCoordinatesRepo.addLocationCoord(ALocCoord); // adds valid landmark to locations table locationRepository.updateApprovalStatus(locationID); // updates approval status accordingly System.out.println(placesCoordinatesRepo.getAllLocationCoords()); - ModelAndView modelAndView = new ModelAndView("redirect:/home"); //redirects back top form in case admin wants to input second location + ModelAndView modelAndView = new ModelAndView("redirect:/mobile-home"); //redirects back top form in case admin wants to input second location return modelAndView; // } diff --git a/src/main/resources/static/css/locationApprovalFormStyle.css b/src/main/resources/static/css/locationApprovalFormStyle.css index 99a2f8719b8877f881addd9e029a4562ed713399..2c33f1465032016f3b81df7bb1d5d8bfb6b678dc 100644 --- a/src/main/resources/static/css/locationApprovalFormStyle.css +++ b/src/main/resources/static/css/locationApprovalFormStyle.css @@ -12,7 +12,9 @@ main { max-width: 620px; margin: 0 auto } - +.coordError{ + color:darkred; +} #formHeader{ padding-top: 10px; color:white; diff --git a/src/main/resources/templates/landmarks/locationApprovalFormTh.html b/src/main/resources/templates/landmarks/locationApprovalFormTh.html index f63cfc04e9621e41826deace5fa7dc18789e34ed..b8d17946a222c92e93cb4f0707a5fa1128000aa2 100644 --- a/src/main/resources/templates/landmarks/locationApprovalFormTh.html +++ b/src/main/resources/templates/landmarks/locationApprovalFormTh.html @@ -27,7 +27,7 @@ </select> </label> <br><br> - <div th:if="${param.error}" class="coordError">Invalid Coordinates entered</div> + <div th:if="${param.error}" class="coordError">Invalid Coordinates entered.</div> <label> Location Latitude: <input type="text" th:field="*{locationCoordsLat}" placeholder="Latitude Here"> <br><br>