-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomerProfile.jspx
56 lines (51 loc) · 1.23 KB
/
CustomerProfile.jspx
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
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:my="http://jakarta.apache.org/tomcat/mytaglib">
<title>ClientProfile</title>
<head>
<meta http-equiv="Content-Script-Type" content="text/javascript" />
</head>
<body>
<form>
<table align="left" >
<tr>
<th>
<jsp:directive.include file="menu.jspx" />
</th>
</tr>
<tr><td>
<table><tr><td>
<div class="messageBox">
<table align="center" width="100%">
<tr class="header"><th colspan="2">Client Profile</th></tr>
<tr>
<td>Name</td>
<td>${sessionScope.client.name}</td>
</tr>
<tr>
<td>Street</td>
<td>${sessionScope.client.address.street}</td>
</tr>
<tr>
<td>City</td>
<td>${sessionScope.client.address.city}</td>
</tr>
<tr>
<td>Province</td>
<td>${sessionScope.client.address.province}</td>
</tr>
<tr>
<td>Postal Code</td>
<td>${sessionScope.client.address.postal}</td>
</tr>
<tr>
<td>Account</td>
<td>${sessionScope.client.account}</td>
</tr>
</table>
</div>
</td></tr></table></td></tr></table>
</form>
</body>
</html>