3. addBook.jsp 파일의 다음 내용을 삭제합니다.
코드 17-19 addBook.jsp
<%@ page contentType="text/html; charset=utf-8" %>
...
<div class="container">
➊
<div class="float-right">
<form:form action="${pageContext.request.contextPath}/logout" method="POST">
<input type="submit" class="btn btn-success" value="Logout"/>
</form:form>
</div>
<div class="float-right" style="padding-right:30px">
<a href="?language=ko">Korean</a>|<a href="?language=en">English</a>
</div>
<br>
<br>
<form:form modelAttribute="NewBook"
action="./add?${_csrf.parameterName}=${_csrf.token}"
class="form-horizontal" enctype="multipart/form-data">
<fieldset>
...
➊ 이전의 [logout] 버튼 표시는 다음 단계에서 작성할 타일즈의 레이아웃에서 메뉴로 이동하여 변경했으므로 삭제했습니다. 그리고 국제화 표현의 한국어와 영어의 [Korean|English] 버튼 출력 위치를 수정했습니다.