-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshowprofile.jsp
More file actions
76 lines (76 loc) · 3.64 KB
/
showprofile.jsp
File metadata and controls
76 lines (76 loc) · 3.64 KB
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
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<%@include file="logincheck.jsp"%>
<head>
<style type="text/css">
.default { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 80% }
.menu { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 80% }
a { color: #0000ff }
a:active { color: #0000ff }
a:hover { color: #0000ff }
a:visited { color: #0000ff }
</style>
</head>
<body>
<table width="800" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><img src="images/batchlogo.gif"></td>
<td background="images/header2.gif" width="100%" align="right" valign="bottom"></td>
<td><img src="images/header3.gif"></td>
</tr>
</table>
<table width="800" cellpadding="0" cellspacing="0">
<tr>
<td width="1" bgcolor="#7f7f7f"><img src="images/1trans.gif" width="1" height="1"></td>
<td nowrap="nowrap" class="menu" valign="top">
<%@include file="menu.jsp"%>
</td>
<td width="1" bgcolor="#7f7f7f"><img src="images/1trans.gif" width="1" height="1"></td>
<td width="100%" valign="top">
<c:choose>
<c:when test="${param.operation == 'editprofile'}">
<jsp:include page="editprofile.jsp" />
</c:when>
<c:when test="${param.operation == 'listfiles'}">
<jsp:include page="listfiles.jsp" />
</c:when>
<c:when test="${param.operation == 'changepassword'}">
<jsp:include page="password.jsp" />
</c:when>
<c:when test="${param.operation == 'createprofile'}">
<jsp:include page="createprofile.jsp" />
</c:when>
<c:when test="${param.operation == 'chooseprofile'}">
<jsp:include page="chooseprofile.jsp" />
</c:when>
<c:when test="${param.operation == 'addjob'}">
<jsp:include page="addjob.jsp" />
</c:when>
<c:when test="${param.operation == 'fulldump'}">
<jsp:include page="fulldump.jsp" />
</c:when>
<c:when test="${param.operation == 'listjobs'}">
<jsp:include page="listjobs.jsp" />
</c:when>
<c:otherwise>
</c:otherwise>
</c:choose>
</td>
<td width="1" bgcolor="#7f7f7f"><img src="images/1trans.gif" width="1" height="1"></td>
</tr>
<tr>
<td colspan="5" width="1" height="1" bgcolor="#7f7f7f"></td>
</tr>
<tr>
<td width="1" bgcolor="#7f7f7f"><img src="images/1trans.gif" width="1" height="1"></td>
<td width="1" colspan="3" bgcolor="#dfdfdf" class="default" nowrap="nowrap"> </td>
<td width="1" bgcolor="#7f7f7f"><img src="images/1trans.gif" width="1" height="1"></td>
</tr>
<tr>
<td colspan="5" width="1" height="1" bgcolor="#7f7f7f"></td>
</tr>
</table>
</body>
</html>