Statistics
| Branch: | Revision:

m2u-upass-admin / WebContent / jsp / ss112_user / ibssRetailUserResetPass.jsp @ 72:dde60018a086

History | View | Annotate | Download (3.77 KB)

1
<%@ taglib uri="/WEB-INF/tld/struts-html-el" prefix="htmlEL" %>
2
<%@ taglib uri="/WEB-INF/tld/struts-bean" prefix="bean" %>
3
<%@ taglib uri="/WEB-INF/tld/c" prefix="c" %>
4

    
5
<bean:define id="detailBean" name="ibssUserForm" property="ibssUserDetailBean"/>
6

    
7
<h3 class="title"><strong><c:out value="${sessionScope.displayDesc}"/> - Reset Password</strong></h3>
8

    
9
<table id="errorTable">
10
	<tr>
11
		<td>
12
			<span id="serverSideError" class="error"><jsp:include flush="true" page="/jsp/errorHandler.jsp"></jsp:include></span>
13
		</td>
14
	</tr>
15
</table>
16

    
17
<table class="stepTable">
18
<tr>
19
<td>&nbsp;</td>
20
<td><div id="steps"><span><bean:message key="general.title.steps" arg0="1" arg1="2"/></span></div></td>
21

    
22
</tr>
23
</table>
24
<htmlEL:form action="/ss112/userResetPass.do">
25
<table class="tabularForm">
26
  <tr>
27
    <td width="69">&nbsp;</td>
28
    <td width="133">&nbsp;</td>
29
    <td colspan="2">&nbsp;</td>
30
    <td width="63">&nbsp;</td>
31
  </tr>
32
  <tr>
33
    <td width="69">&nbsp;</td>
34
    <td><bean:message key="general.id"/>:</td>
35
    <td colspan="2"><strong><c:out value="${detailBean.map.userID}"/></strong></td>
36
    <td>&nbsp;</td>
37
    </tr>
38
     <tr>
39
    <td width="69">&nbsp;</td>
40
    <td><bean:message key="user.id"/>:</td>
41
    <td colspan="2"><strong><c:out value="${detailBean.map.userAlias}"/></strong></td>
42
    <td>&nbsp;</td>
43
    </tr>
44
 <%--  <tr>
45
    <td width="69">&nbsp;</td>
46
    <td><bean:message key="user.name"/>:</td>
47
    <td colspan="2"><strong>
48
    	<c:choose>
49
    		<c:when test="${not empty detailBean.map.userName}">
50
    			<c:out value="${detailBean.map.userName}"></c:out>
51
    		</c:when>
52
    		<c:otherwise>-</c:otherwise>
53
    	</c:choose>
54
    </strong></td>
55
    <td>&nbsp;</td>
56
    </tr> --%>
57
  <tr>
58
    <td>&nbsp;</td>
59
    <td><bean:message key="user.status"/>:</td>
60
    <td colspan="2"><strong>
61
    	<c:choose>
62
    		<c:when test="${not empty detailBean.map.userStatus}">
63
    			<c:out value="${detailBean.map.userStatus}"></c:out>
64
    		</c:when>
65
    		<c:otherwise>-</c:otherwise>
66
    	</c:choose>
67
    </strong></td>
68
    <td>&nbsp;</td>
69
  </tr>
70
  <tr>
71
		<td>&nbsp;</td>
72
		<td><bean:message key="user.application" />:</td>
73
		<td colspan="2"><strong> <c:choose>
74
					<c:when test="${not empty detailBean.map.userApplication}">
75
						<c:out value="${detailBean.map.userApplication}"></c:out>
76
					</c:when>
77
					<c:otherwise>-</c:otherwise>
78
				</c:choose> </strong></td>
79
		<td>&nbsp;</td>
80
	</tr>
81
	<tr>
82
		<td>&nbsp;</td>
83
		<td><bean:message key="user.creation.date" />:</td>
84
		<td colspan="2"><strong> <c:choose>
85
					<c:when test="${not empty detailBean.map.userCreationDate}">
86
						<c:out value="${detailBean.map.userCreationDate}"></c:out>
87
					</c:when>
88
					<c:otherwise>-</c:otherwise>
89
				</c:choose> </strong></td>
90
		<td>&nbsp;</td>
91
	</tr>
92
	 <tr>
93
    <td>&nbsp;</td>
94
    <td><bean:message key="user.new.password"/>:</td>
95
    <td colspan="2"><htmlEL:password autocomplete="off" property="pass" name="ibssUserForm" /></td>
96
    <td>&nbsp;</td>
97
  </tr>
98
  <tr>
99
    <td>&nbsp;</td>
100
    <td><bean:message key="user.confirm.password"/>:</td>
101
    <td colspan="2"><htmlEL:password autocomplete="off" property="confirmPass" name="ibssUserForm" /></td>
102
    <td>&nbsp;</td>
103
  </tr>
104
  <tr>
105
    <td>&nbsp;</td>
106
    <td>&nbsp;</td>
107
    <td colspan="2">&nbsp;</td>
108
    <td>&nbsp;</td>
109
  </tr>
110
  <tr>
111
    <td>&nbsp;</td>
112
    <td>&nbsp;</td>
113
    <td>&nbsp;</td>
114
    <td colspan="2" width="150">
115
        <htmlEL:submit property="action" styleClass="button" onclick="overlay();">
116
			<bean:message key="general.button.back"/>						
117
		</htmlEL:submit>
118
		<htmlEL:submit property="action" styleClass="button" onclick="overlay();">
119
			<bean:message key="general.button.confirm"/>						
120
		</htmlEL:submit>
121
    </td>
122
  </tr>
123
</table>
124
</htmlEL:form>