회원가입완료 kjbank 레이아웃 / 이메일 중복 체크 추가

This commit is contained in:
Rinjae
2025-12-03 20:21:35 +09:00
parent 2b81ce903e
commit 0cc7d3f9e0
3 changed files with 8 additions and 2 deletions
+1
View File
@@ -103,3 +103,4 @@ TODO.txt
*.log
.claude
*.report.md
diff
@@ -132,6 +132,11 @@ public class UserRegisterFacadeImpl implements UserRegisterFacade {
return new ValidationResponse(false,"입력값을 확인해 주세요.");
}
// 이메일 중복 체크
if (portalUserService.existsByLoginId(registrationDTO.getLoginId())) {
return new ValidationResponse(false, "이미 사용 중인 이메일입니다.");
}
// 25.10.01 - 휴대폰 번호 중복이여도 가입 가능
// PortalUser existingUser = portalUserRepository.findByUserNameAndMobileNumber(registrationDTO.getUserName(), registrationDTO.getMobileNumber());
//
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorate="~{layout/kbank_base_layout}">
layout:decorate="~{layout/kjbank_base_layout}">
<body>
<section layout:fragment="contentFragment" class="content">
<div class="content_wrap">