We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
로그인 기능 및 페이지를 생성합니다.
이 내용을 Next.js와 TypeScript로 제작할 예정입니다.
// 쿠키에 저장 document.cookie = "token=yourTokenHere; Secure; HttpOnly; SameSite=Strict";
// 로컬 스토리지에 저장 localStorage.setItem('token', 'yourTokenHere');
The text was updated successfully, but these errors were encountered:
#4 브랜치 변경을 위해 업로드
6353d83
LeeHueeng
Profitah
No branches or pull requests
어떤 기능인가요?
작업 상세 내용
로그인 컴포넌트 생성
로그인 로직 제작
로그인 테스트
참고할만한 자료(선택)
이 내용을 Next.js와 TypeScript로 제작할 예정입니다.
토큰저장 방식에 대한 설명
// 쿠키에 저장
document.cookie = "token=yourTokenHere; Secure; HttpOnly; SameSite=Strict";
// 로컬 스토리지에 저장
localStorage.setItem('token', 'yourTokenHere');
The text was updated successfully, but these errors were encountered: