글쓰기


제 목
내 용
boardWriteForm.jsp

글쓰기


제 목
내 용
boardWriteForm.jsp

글쓰기


제 목
내 용
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>boardWriteForm.jsp</title>
<style type="text/css">
table, th, td{
	border: 1px solid black;
	border-collapse: collapse;
}
th, td{
	padding: 4px;
}
textarea {
	resize: none;
}
</style>
<script type="text/javascript" src="../script/boardscript.js?after"></script>
</head>
<body>
	<br><br>
	<h1>글쓰기</h1>
	<br>
	<form name="boardWriteForm" action="../board/boardWrite.jsp" method="post">
		<table>
			<tr>
				<th> 제 목 </th>
				<td><input type="text" name="subject" size="50"/></td>
			</tr>
			<tr>
				<th> 내 용 </th>
				<td>
					<textarea rows="20" cols="52" name="content"></textarea>
				</td>
			</tr>
			<tr>
				<td colspan="2" align="center">
					<input type="button" value="작성완료" onclick="checkBoardWrite()"/>
					<input type="button" value="main" onclick="location.href='../main/index.jsp'"/>
				</td>
			</tr>
		</table>
	</form>
</body>
</html>