This commit is contained in:
현성필
2023-05-12 11:47:09 +09:00
parent ac5f4146f4
commit c47320f56c
24 changed files with 444 additions and 30 deletions
@@ -26,7 +26,7 @@ public class AccountController {
@GetMapping("/change_password.do")
public String changePassword(ModelMap model, @ModelAttribute("passwordChangeRequest") PasswordChangeRequestDTO passwordChangeRequestDTO) {
return "/apps/main/updatePw";
return "apps/main/updatePw";
}
@PostMapping(value = "/update_password.do")
@@ -51,7 +51,7 @@ public class AccountController {
model.addAttribute("resultMsg", resultMsg);
model.addAttribute("passwordChangeRequest", new PasswordChangeRequestDTO());
return "/apps/main/updatePw";
return "apps/main/updatePw";
}