<%@page import="vo.BoardDTO"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>MVC 게시판</title>
<style type="text/css">
#replyForm {
width: 500px;
height: 450px;
border: 1px solid red;
margin: auto;
}
h1 {
text-align: center;
}
table {
margin: auto;
width: 450px;
}
.td_left {
width: 150px;
background: orange;
text-align: center;
}
.td_right {
width: 300px;
background: skyblue;
}
#commandCell {
text-align: center;
}
</style>
</head>
<body>
<!-- 게시판 답글 작성 -->
<section id="replyForm">
<h1>게시판 답글 작성</h1>
<form action="BoardReplyPro.bo" name="boardForm" method="post">
<!-- 글번호와 페이지번호 전달 -->
<input type="hidden" name="board_num" value="${param.board_num }">
<input type="hidden" name="pageNum" value="${param.pageNum }">
<!-- 답글에 대한 원본글 정보 담고 있는 board_re_ref, board_re_lev, board_re_seq 도 전달 -->
<input type="hidden" name="board_re_ref" value="${board.board_re_ref }">
<input type="hidden" name="board_re_lev" value="${board.board_re_lev }">
<input type="hidden" name="board_re_seq" value="${board.board_re_seq }">
<table>
<tr>
<td class="td_left"><label for="board_name">글쓴이</label></td>
<td class="td_right">
<input type="text" name="board_name" required="required" />
</td>
</tr>
<tr>
<td class="td_left"><label for="board_pass">비밀번호</label></td>
<td class="td_right">
<input type="password" name="board_pass" required="required" />
</td>
</tr>
<tr>
<td class="td_left"><label for="board_subject">제목</label></td>
<td class="td_right">
<input type="text" name="board_subject" value="Re:${board.board_subject }" required="required" />
</td>
</tr>
<tr>
<td class="td_left"><label for="board_content">내용</label></td>
<td class="td_right">
<textarea id="board_content" name="board_content" cols="40" rows="15" required="required">${board.board_content }</textarea>
</td>
</tr>
</table>
<section id="commandCell">
<input type="submit" value="답글등록">
<input type="reset" value="다시쓰기">
<input type="button" value="취소" onclick="history.back()">
</section>
</form>
</section>
</body>
</html>
<%@page import="vo.BoardDTO"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
| 글쓴이 | |
| 비밀번호 | |
| 제목 | |
| 내용 |