board/modify.html
페이지 정보
본문
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorate="~{include/layout.html}">
<body>
<div layout:fragment="content">
<br>
<center>
<h1>MODIFY</h1>
<form method="post">
<input type="hidden" name="bno" th:value="${dto.bno}">
<table width="700" border="1">
<tr>
<th width="50">제목</th>
<td><input name="title" style="width:100%;" th:value="${dto.title}"></td>
</tr>
<tr>
<th>내용</th>
<td><textarea name="content" style="width:100%;height:100px;">[[${dto.content}]]</textarea></td>
</tr>
<tr>
<th>작성자</th>
<td><input name="writer" th:value="${dto.writer}" readonly></td>
</tr>
<tr>
<th></th>
<td><button>수정</button></td>
</tr>
</table>
</form>
</center>
<br>
</div>
</body>
</html>
- 이전글BoardController 24.06.19
- 다음글● 조회 화면 처리와 설정 24.06.19
댓글목록
등록된 댓글이 없습니다.