<!-- 02_param/memberForm.jsp -->
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<!--
# MemberBean 의 정보(id, pw, 이름, email) 을 입력받은 결과를 'memberPro.jsp' 에서 확인하는 페이지를 구현하세요
-->
<html>
<head>
<meta charset="UTF-8">
<title>memberForm.jsp</title>
<style type="text/css">
table, th, td {
border: 1px solid #333333;
border-collapse: collapse;
padding: 4px;
}
</style>
</head>
<body>
<h1>정보 입력</h1>
<br/>
<form action="memberPro.jsp" method="post">
<table>
<tr>
<th width="120px">아이디</th>
<td><input type="text" name="id"/></td>
</tr>
<tr>
<th width="120px">비밀번호</th>
<td><input type="text" name="pwd"/></td>
</tr>
<tr>
<th width="120px">이름</th>
<td><input type="text" name="name"/></td>
</tr>
<tr>
<th width="120px">이메일</th>
<td><input type="text" name="email"/></td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="확인"/> <input type="reset" value="취소"/>
</td>
</tr>
</table>
</form>
</body>
</html>
|