Line | |
---|
1 |
<%@ page contentType="text/html; charset=euc-kr" %> |
---|
2 |
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %> |
---|
3 |
<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt" %> |
---|
4 |
|
---|
5 |
<html> |
---|
6 |
<head> |
---|
7 |
<link rel="stylesheet" type="text/css" href="../css/style.css"/> |
---|
8 |
<script type="text/javascript" src="../js/board.js"></script> |
---|
9 |
<title>SPRING SAMPLE PROJECT 테스트</title> |
---|
10 |
<meta content="text/html; charset=euc-kr" http-equiv="content-type"> |
---|
11 |
<meta http-equiv="cache-control" content="max-age=0"> |
---|
12 |
<meta http-equiv="cache-control" content="no-cache"> |
---|
13 |
<meta http-equiv="expires" content="0"> |
---|
14 |
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT"> |
---|
15 |
<meta http-equiv="pragma" content="no-cache"> |
---|
16 |
</head> |
---|
17 |
<body> |
---|
18 |
|
---|
19 |
<table width="100%" class="table_default"> |
---|
20 |
<tr> |
---|
21 |
<td align="left"> |
---|
22 |
<b>SPRING SAMPLE PROJECT.</b> |
---|
23 |
</td> |
---|
24 |
<td align="right"> |
---|
25 |
<c:if test="${!empty userSession.user}"> |
---|
26 |
[<a href="<c:url value="/board/logout.do"/>">로그아웃</a> | <c:out value="${userSession.user.userName}"/>]님 어서오세요~ |
---|
27 |
</c:if> |
---|
28 |
<c:if test="${empty userSession.user}"> |
---|
29 |
[<a href="<c:url value="/user/insertUserForm.do"/>">회원가입</a> | <a href="<c:url value="/board/logonForm.do"/>">로그인</a>] |
---|
30 |
</c:if> |
---|
31 |
</td> |
---|
32 |
</tr> |
---|
33 |
</table> |
---|
34 |
<hr size="1"/> |
---|