|
@@ -73,7 +73,7 @@ public class TsfCustomerController extends TsfBaseController {
|
|
|
* @param confirmYn - 인증여부
|
|
* @param confirmYn - 인증여부
|
|
|
* @return ModelAndView
|
|
* @return ModelAndView
|
|
|
* @author jsshin
|
|
* @author jsshin
|
|
|
- * @since 2020. 02. 05
|
|
|
|
|
|
|
+ * @since 2021. 02. 05
|
|
|
*/
|
|
*/
|
|
|
@GetMapping("/pwd/find/result/form")
|
|
@GetMapping("/pwd/find/result/form")
|
|
|
public ModelAndView pwdFindResult(@RequestParam(required = false) String confirmYn) {
|
|
public ModelAndView pwdFindResult(@RequestParam(required = false) String confirmYn) {
|
|
@@ -83,5 +83,21 @@ public class TsfCustomerController extends TsfBaseController {
|
|
|
return mav;
|
|
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;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
|
|
|
}
|
|
}
|