-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
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
[6주차 과제] 박지현 과제 제출합니다. #10
base: jihyun
Are you sure you want to change the base?
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#Sun Aug 18 21:14:11 KST 2024 | ||
gradle.version=7.6.1 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!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> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<!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="email" id="email" name="email" placeholder="이메일을 입력하세요"> | ||
<br> | ||
<label for="pwd">비밀번호</label> | ||
<input type="password" id="pwd" name="pwd" placeholder="비밀번호를 입력하세요"> | ||
</div> | ||
<button type="submit">로그인</button> | ||
</form> | ||
</div> <!-- /container --> | ||
</body> | ||
</html> |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. MemberService 만든김에 멤버 생성, 조회 등을 Service에서 처리해보세요!!!! |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!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> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<!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="email" id="email" name="email" placeholder="이메일을 입력하세요"> | ||
<br> | ||
<label for="pwd">비밀번호</label> | ||
<input type="password" id="pwd" name="pwd" placeholder="비밀번호를 입력하세요"> | ||
</div> | ||
<button type="submit">로그인</button> | ||
</form> | ||
</div> <!-- /container --> | ||
</body> | ||
</html> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
setter를 지양합시다!! 생성자로 충분할거 같아요!!