.loginContainer {
display : flex;
justify-content: center;
align-item: center;
}
.loginContainer {
display : grid;
place-item: center;
}
.loginContainer {
position : absolute;
top: 50%;
left: 50%;
}
이벤트 위임(버블링, 캡쳐링)
함수를 기능별로 분류해서 모든 페이지에서 동일하게 관리해야함.
ex) 회원가입의 아이디와 패스워드 조건이 로그인의 아이디와 패스워드 조건을 하나의 함수로 만들어서 동일하게 관리하는 것이 좋음
3항 연산자
함수 간단하게 사용하기
handleBtn (isAllValid);
if (isAllValid) {
handleBtn (true);
} else {
handleBtn(false);
}