-
Notifications
You must be signed in to change notification settings - Fork 0
/
mypageMain.jsp
103 lines (94 loc) · 4.13 KB
/
mypageMain.jsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<jsp:include page="aboveMenu.jsp" /> <!-- 상단메뉴바 -->
<jsp:include page="floatingBanner.jsp" /> <!-- 플로팅배너 -->
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>마이페이지</title>
<link rel="stylesheet" href="css/details.css" />
<script type="text/javascript" src="jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
<script type="text/javascript" src="js/mypage.js"></script>
<script type="text/javascript" src="js/menuAnimate.js"></script>
<script>
$(function() {
$('.li').click(function(){
var id= this.id;
location.href = "mypage.do?rent="+id;
})
})
</script>
</head>
<body style="font-family: '나눔고딕'" onload="$('#log_user_id').focus()">
<div id="container" class="div container" align="center">
<div class="divWid">
<jsp:include page="mypageHead.jsp"></jsp:include>
<table width="800"
style="background-color: #f6f6f6; height: 70px; vertical-align: middle; margin-top: -8px">
<tr>
<td align="center">
<table class="topNavi" width="579"
style="background-image: url('images/03mypage/box4.png'); background-repeat: no-repeat;"
cellpadding="0" cellspacing="0">
<tr height="26">
<td align="center" style="padding-bottom: 2px">
<a class= "myList" id="mypageRentalMain" href="mypage.do?tab=RENTAL"> <font
style="font-size: 14px; color: #d55454">대여 내역 조회</font>
</a>
<a class= "myList" id="mypageLike" style="margin-left: 20px" href="mypage.do?tab=LIKE"> <font
style="font-size: 14px; color: #000000">관심 물품 조회</font>
</a>
<a class= "myList" id="mypageQna" style="margin-left: 20px" href="mypage.do?tab=QNA"> <font
style="font-size: 14px; color: #000000">1:1문의</font>
</a>
<a class= "myList" id="mypgeEdit" style="margin-left: 20px" href="mypage.do?tab=EDIT"> <font
style="font-size: 14px; color: #000000">회원정보 수정</font>
</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<div
style="width: 780px; text-align: left; margin-top: 60px; margin-bottom: 80px">
<div
style="width: 100%; height: 42px; text-align: center; margin-bottom: 20px">
<font style="font-size: 22px; color: #d55454; font-weight: bold; margin-bottom: 40px">*대여 내역 조회 *</font><br>
<div style="padding-top:10px; padding-bottom:10px">
<font style="font-size: 14px; color: #b4b4b4">반납예정일을 확인하셔서 연체되지 않도록 주의해주세요.</font>
</div>
</div>
<div align="center" style="margin-right: 45px">
<ul id="thisisul" style="display: inline-block; list-style: none">
<li class="li" id="rentalNow"
style="width: 230px; vertical-align: middle; cursor: pointer; border: lightgray 1px solid; padding: 10px 0px 10px 0px; float: left; background-color: #d55454">
<font id="" style="font-size: 14px; color: #FFFFFF">대여 현황</font>
</li>
<li class="li" id="rentalAll"
style="width: 230px; vertical-align: middle; cursor: pointer; border: lightgray 1px solid; padding: 10px 0px 10px 0px; float: left; margin-left: -1px">
<font id="rentalAll_" style="font-size: 14px; color: #000000">대출/
반납 기록</font>
</li>
<li class="li" id="delayFee"
style="width: 230px; vertical-align: middle; cursor: pointer; border: lightgray 1px solid; padding: 10px 0px 10px 0px; float: left; margin-left: -1px">
<font id="delayFee_" style="font-size: 14px; color: #000000">연체
내역</font>
</li>
</ul>
</div>
<br>
<div id="rentContent">
<jsp:include page="mypageRent.jsp"></jsp:include>
</div>
</div>
<!-- 카피라이트 -->
<jsp:include page="copyRight.jsp"></jsp:include>
</div>
</body>
</html>