Statistics
| Branch: | Revision:

m2u-upass-admin / WebContent / jsp / ss223_application / ibssAppUserResetPass.jsp @ 85:b21ea78dfbb4

History | View | Annotate | Download (3.3 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="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
    <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="appuser.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>&nbsp;</td>
46
		<td><bean:message key="appuser.application.name" />:</td>
47
		 <td colspan="2"><strong><c:out value="${detailBean.map.appName}"/></strong></td>
48
		<td>&nbsp;</td>
49
	</tr>
50
	<tr>
51
	    <td>&nbsp;</td>
52
	    <td><bean:message key="appuser.user.description"/>:</td>
53
	    <td colspan="2">
54
		    <c:choose>
55
		    	<c:when test="${not empty detailBean.map.userDescription}">
56
		    		 <strong><c:out value="${detailBean.map.userDescription}"/></strong>
57
		    	</c:when>
58
		    	<c:otherwise>-</c:otherwise>
59
		    </c:choose>
60
	    </td>
61
	    <td>&nbsp;</td>
62
  	</tr>
63
	<tr>
64
		<td>&nbsp;</td>
65
		<td><bean:message key="appuser.created.date" />:</td>
66
		<td colspan="2"><strong> <c:choose>
67
					<c:when test="${not empty detailBean.map.userCreationDate}">
68
						<c:out value="${detailBean.map.userCreationDate}"></c:out>
69
					</c:when>
70
					<c:otherwise>-</c:otherwise>
71
				</c:choose> </strong></td>
72
		<td>&nbsp;</td>
73
	</tr>
74
	 <tr>
75
    <td>&nbsp;</td>
76
    <td><bean:message key="appuser.user.password"/>:</td>
77
    <td colspan="2"><htmlEL:password autocomplete="off" property="password" name="appUserForm" /></td>
78
    <td>&nbsp;</td>
79
  </tr>
80
  <tr>
81
    <td>&nbsp;</td>
82
    <td><bean:message key="appuser.user.confirmPassword"/>:</td>
83
    <td colspan="2"><htmlEL:password autocomplete="off" property="confirmPassword" name="appUserForm" /></td>
84
    <td>&nbsp;</td>
85
  </tr>
86
  <tr>
87
    <td>&nbsp;</td>
88
    <td>&nbsp;</td>
89
    <td colspan="2">&nbsp;</td>
90
    <td>&nbsp;</td>
91
  </tr>
92
  <tr>
93
    <td>&nbsp;</td>
94
    <td>&nbsp;</td>
95
    <td>&nbsp;</td>
96
    <td colspan="2" width="150">
97
        <htmlEL:submit property="action" styleClass="button" onclick="overlay();">
98
			<bean:message key="general.button.back"/>						
99
		</htmlEL:submit>
100
		<htmlEL:submit property="action" styleClass="button" onclick="overlay();">
101
			<bean:message key="general.button.confirm"/>						
102
		</htmlEL:submit>
103
    </td>
104
  </tr>
105
</table>
106
</htmlEL:form>