-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 자동 로그인 * 로그인, 회원가입 초안 * 자동 로그인기능, 로그인 회원가입 화면 초안 * fix : 검증문제 해결 * 회원가입시 패스워드 수정 * 자동로그인 화면 수정 * 자동로그인 수정 * 자동 로그인 수정2 * 자동 로그인 수정3 * feat : Exception 추가 * checkout을 위한 Commit * 사용자 수정 * 로그인 화면 수정 * 사용자 수정2 * 로그인 화면 수정 * 사용자 수정2 * feat : 입찰기능 추가 (#71) * refactor, feat : 컬럼 추가, 타입변경 및 rename 에 따른 기능 수정 * feat : Scheduling완료, Mail Template 페이지제작 * tempSave * feat : 입찰 기능 구현 * feat : checkout을 위한 Commit * feat : Emial Template 제작중 * feat : 이메일 구현 - 입찰자가 없는 경우 유찰 안내메일 - 관리자가 승인하지 않은 경우 유찰 안내메일 - 경매 시작 안내 메일 - 링크 발송을 위한 Properties 추가 * Issue 수정 * feat : detail페이지 이쁘게 꾸미기 * faet : Front로직 추가~ * Feat : 입찰기능 추가 * 사용자 수정3 * merge --------- Co-authored-by: donsonioc2010 <whddnjs822@gmail.com> Co-authored-by: Jong1 <44349716+donsonioc2010@users.noreply.github.com>
- Loading branch information
1 parent
ad64a4c
commit ec9d54a
Showing
13 changed files
with
372 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
Api/src/main/java/picasso/server/api/user/exception/EmailErrorException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package picasso.server.api.user.exception; | ||
|
||
import picasso.server.common.exception.BaseException; | ||
|
||
import static picasso.server.common.exception.GlobalException.EMAIL_ERROR; | ||
|
||
public class EmailErrorException extends BaseException { | ||
public static final BaseException EXCEPTION = new EmailErrorException(); | ||
|
||
public EmailErrorException() { super(EMAIL_ERROR);} | ||
} |
13 changes: 13 additions & 0 deletions
13
Api/src/main/java/picasso/server/api/user/exception/LoginErrorException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package picasso.server.api.user.exception; | ||
|
||
import picasso.server.common.exception.BaseException; | ||
|
||
import static picasso.server.common.exception.GlobalException.LOGIN_ERROR; | ||
|
||
public class LoginErrorException extends BaseException { | ||
public static final BaseException EXCEPTION = new LoginErrorException(); | ||
|
||
public LoginErrorException() { | ||
super(LOGIN_ERROR); | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
Api/src/main/java/picasso/server/api/user/exception/StatusErrorException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package picasso.server.api.user.exception; | ||
|
||
import picasso.server.common.exception.BaseException; | ||
|
||
import static picasso.server.common.exception.GlobalException.STATUS_ERROR; | ||
|
||
public class StatusErrorException extends BaseException { | ||
public static final BaseException EXCEPTION = new StatusErrorException(); | ||
|
||
public StatusErrorException() { super(STATUS_ERROR); } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#login-box { | ||
margin: 80px; | ||
background-color: white; | ||
display: flex; | ||
flex-direction: column; | ||
border-radius: 70px; | ||
justify-content: center; | ||
align-items: center; | ||
height: 50vh; | ||
margin-left: 37%; | ||
border: 10px solid #18ACDB; | ||
width: 380px; | ||
} | ||
|
||
#login-title { | ||
text-align: center; | ||
font-family: Sigmar One; | ||
font-style: normal; | ||
color: #18ACDB; | ||
} | ||
|
||
#email, #password { | ||
text-align: center; | ||
} | ||
|
||
#rememberMe-container { | ||
text-align: center; | ||
} | ||
|
||
.btn-primary.before-login-btn { | ||
text-align: center; | ||
margin-left: 28%; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
signup-container { | ||
margin: 80px; | ||
background-color: white; | ||
display: flex; | ||
flex-direction: column; | ||
border-radius: 70px; | ||
justify-content: center; | ||
align-items: center; | ||
height: 50vh; | ||
margin-left: 37%; | ||
border: 10px solid #18ACDB; | ||
width: 380px; | ||
} | ||
|
||
signup-form { | ||
/* form 관련 스타일 추가 */ | ||
} | ||
|
||
signup-title { | ||
text-align: center; | ||
font-family: Sigmar One; | ||
font-style: normal; | ||
color: #18ACDB; | ||
} | ||
|
||
signup-table { | ||
/* table 관련 스타일 추가 */ | ||
} | ||
|
||
#nickname, | ||
#email, | ||
#password, | ||
#repeatPassword { | ||
background-color: #E8F0FE; | ||
text-align: center; | ||
} | ||
|
||
register-button { | ||
text-align: center; | ||
margin-left: 20%; | ||
} |
Oops, something went wrong.