Parcourir la source

회원 기능 개발 중

jsshin il y a 5 ans
Parent
commit
b83b7b361b

+ 17 - 1
src/main/java/com/style24/front/biz/web/TsfCustomerController.java

@@ -73,7 +73,7 @@ public class TsfCustomerController extends TsfBaseController {
 	 * @param confirmYn - 인증여부
 	 * @return ModelAndView
 	 * @author jsshin
-	 * @since 2020. 02. 05
+	 * @since 2021. 02. 05
 	 */
 	@GetMapping("/pwd/find/result/form")
 	public ModelAndView pwdFindResult(@RequestParam(required = false) String confirmYn) {
@@ -83,5 +83,21 @@ public class TsfCustomerController extends TsfBaseController {
 		return mav;
 	}
 
+	/**
+	 * 회원정보 입력 화면
+	 *
+	 * @return ModelAndView
+	 * @author jsshin
+	 * @since 2021. 02. 05
+	 */
+	@GetMapping("/join/form")
+	public ModelAndView getJoinForm() {
+		ModelAndView mav = new ModelAndView();
+
+		mav.setViewName(super.getDeviceViewName("customer/JoinForm"));
+		return mav;
+	}
+
+
 
 }