Statistics
| Branch: | Revision:

m2u-upass-admin / WebContent / jsp / ss223_application / ibssAppUserResetPass.jsp @ 63:9431991ebe9b

History | View | Annotate | Download (3.53 KB)

1 56:0dd97c329887 weikuan
<%@ 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="appUserForm" property="appUserDetailsBean"/>
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="/ss223/appUserResetPassResult.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 63:9431991ebe9b weikuan
    <td><bean:message key="general.id"/>:</td>
35 56:0dd97c329887 weikuan
    <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 63:9431991ebe9b weikuan
    <td><bean:message key="appuser.user.id"/>:</td>
41 56:0dd97c329887 weikuan
    <td colspan="2"><strong><c:out value="${detailBean.map.userAlias}"/></strong></td>
42
    <td>&nbsp;</td>
43
    </tr>
44 63:9431991ebe9b weikuan
    <tr>
45
    <td width="69">&nbsp;</td>
46
    <td><bean:message key="appuser.user.name"/>:</td>
47
    <td colspan="2"><strong><c:out value="${detailBean.map.userName}"/></strong></td>
48
    <td>&nbsp;</td>
49
    </tr>
50 56:0dd97c329887 weikuan
  	<tr>
51
		<td>&nbsp;</td>
52 61:7674de95da21 weikuan
		<td><bean:message key="appuser.application.name" />:</td>
53 56:0dd97c329887 weikuan
		 <td colspan="2"><strong><c:out value="${detailBean.map.appName}"/></strong></td>
54
		<td>&nbsp;</td>
55
	</tr>
56
	<tr>
57
	    <td>&nbsp;</td>
58
	    <td><bean:message key="appuser.user.description"/>:</td>
59
	    <td colspan="2">
60
		    <c:choose>
61
		    	<c:when test="${not empty detailBean.map.userDescription}">
62
		    		 <strong><c:out value="${detailBean.map.userDescription}"/></strong>
63
		    	</c:when>
64
		    	<c:otherwise>-</c:otherwise>
65
		    </c:choose>
66
	    </td>
67
	    <td>&nbsp;</td>
68
  	</tr>
69
	<tr>
70
		<td>&nbsp;</td>
71
		<td><bean:message key="appuser.created.date" />:</td>
72
		<td colspan="2"><strong> <c:choose>
73
					<c:when test="${not empty detailBean.map.userCreationDate}">
74
						<c:out value="${detailBean.map.userCreationDate}"></c:out>
75
					</c:when>
76
					<c:otherwise>-</c:otherwise>
77
				</c:choose> </strong></td>
78
		<td>&nbsp;</td>
79
	</tr>
80
	 <tr>
81
    <td>&nbsp;</td>
82
    <td><bean:message key="appuser.user.password"/>:</td>
83
    <td colspan="2"><htmlEL:password autocomplete="off" property="password" name="appUserForm" maxlength="12"/></td>
84
    <td>&nbsp;</td>
85
  </tr>
86
  <tr>
87
    <td>&nbsp;</td>
88
    <td><bean:message key="appuser.user.confirmPassword"/>:</td>
89
    <td colspan="2"><htmlEL:password autocomplete="off" property="confirmPassword" name="appUserForm" maxlength="12"/></td>
90
    <td>&nbsp;</td>
91
  </tr>
92
  <tr>
93
    <td>&nbsp;</td>
94
    <td>&nbsp;</td>
95
    <td colspan="2">&nbsp;</td>
96
    <td>&nbsp;</td>
97
  </tr>
98
  <tr>
99
    <td>&nbsp;</td>
100
    <td>&nbsp;</td>
101
    <td>&nbsp;</td>
102
    <td colspan="2" width="150">
103
        <htmlEL:submit property="action" styleClass="button" onclick="overlay();">
104
			<bean:message key="general.button.back"/>
105
		</htmlEL:submit>
106
		<htmlEL:submit property="action" styleClass="button" onclick="overlay();">
107
			<bean:message key="general.button.confirm"/>
108
		</htmlEL:submit>
109
    </td>
110
  </tr>
111
</table>
112
</htmlEL:form>