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
/
/memebers/login
/blogs?creatorId=1
<!DOCTYPE HTML> <html xmlns:th="http://www.thymeleaf.org"> <body> <div class="container"> <form action="/members/login" method="post"> <div class="form-group"> <label for="email">이메일</label> <input type="text" id="email" name="email" placeholder="이메일을 입력하세요"> </div> <div class="form-group"> <label for="password">비밀번호</label> <input type="text" id="password" name="password" placeholder="비밀번호를 입력하세요"> </div> <button type="submit">로그인</button> </form> </div> <!-- /container --> </body> </html>
/blogs
${name}의 블로그
<!DOCTYPE HTML> <html xmlns:th="http://www.thymeleaf.org"> <body> <div class="container"> <div> <h1><span th:text="${name}"/>의 블로그</h1> </div> </div> <!-- /container --> </body> </html>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
로그인 구현
1. 회원가입 필드 추가
2. 홈 화면
/
/memebers/login
으로 이동3. 로그인 페이지
/memebers/login
/blogs?creatorId=1
)/
)loginForm.html
4. 블로그 페이지
/blogs
${name}의 블로그
blogList.html
기타 요구 사항
The text was updated successfully, but these errors were encountered: