Line | |
---|
1 |
<%@ include file="header.jsp" %> |
---|
2 |
<%@ page contentType="text/html; charset=euc-kr" %> |
---|
3 |
|
---|
4 |
<c:if test="${empty message}"> |
---|
5 |
<b><font color="RED"><c:url value="${message}"/></font></b> |
---|
6 |
</c:if> |
---|
7 |
|
---|
8 |
<form action="<c:url value="/board/logon.do"/>" method="POST"> |
---|
9 |
|
---|
10 |
<c:if test="${!empty logonForwardAction}"> |
---|
11 |
<input type="hidden" name="forwardAction" value="<c:url value="${logonForwardAction}"/>"/> |
---|
12 |
</c:if> |
---|
13 |
|
---|
14 |
<table class="table_default" border="0" cellpadding="3" cellspacing="1" width="300" align="center" bgcolor="#949EA5"> |
---|
15 |
<tr height="30"> |
---|
16 |
<td bgcolor="#7B869A" colspan="2" align="center"> |
---|
17 |
<font color="#FFFFFF"><b>로그인</b></font> |
---|
18 |
</td> |
---|
19 |
</tr> |
---|
20 |
<tr> |
---|
21 |
<td bgcolor="#FFFFFF" align="right">회원ID : </td> |
---|
22 |
<td bgcolor="#FFFFFF"><input type="text" name="userId" size="10" maxlength="10"></td> |
---|
23 |
</tr> |
---|
24 |
<tr> |
---|
25 |
<td bgcolor="#FFFFFF" align="right">비밀번호 : </td> |
---|
26 |
<td bgcolor="#FFFFFF"><input type="password" name="passwd" size="10" maxlength="10"></td> |
---|
27 |
</tr> |
---|
28 |
<tr> |
---|
29 |
<td bgcolor="#7B869A" colspan="2" align="center"><input type="submit" value="로그인"></td> |
---|
30 |
</tr> |
---|
31 |
</table> |
---|
32 |
|
---|
33 |
</form> |
---|
34 |
|
---|
35 |
<center> |
---|
36 |
<a href="<c:url value="/board/newUser.do"/>">회원가입</a> |
---|
37 |
</center> |
---|
38 |
|
---|
39 |
<%@ include file="footer.jsp" %> |
---|