瀏覽代碼

회원 기능 개발 중

jsshin 5 年之前
父節點
當前提交
b83b7b361b
共有 1 個文件被更改,包括 17 次插入1 次删除
  1. 17 1
      src/main/java/com/style24/front/biz/web/TsfCustomerController.java

+ 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;
+	}
+
+
 
 }