blob: 75fd3e01df400728cfc5c5ca31b8183ef952f822 (
plain)
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
|
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="iso-8859-1"%>
<html><head>
<%@ include file="head.jsp" %>
</head>
<body class="mainframe bgcolor1">
<c:import url="settingsHeader.jsp">
<c:param name="cat" value="password"/>
<c:param name="restricted" value="true"/>
</c:import>
<c:choose>
<c:when test="${command.ldapAuthenticated}">
<p><fmt:message key="usersettings.passwordnotsupportedforldap"/></p>
</c:when>
<c:otherwise>
<h2><fmt:message key="passwordsettings.title"><fmt:param>${command.username}</fmt:param></fmt:message></h2>
<form:form method="post" action="passwordSettings.view" commandName="command">
<table class="indent">
<tr>
<td><fmt:message key="usersettings.newpassword"/></td>
<td><form:password path="password"/></td>
<td class="warning"><form:errors path="password"/></td>
</tr>
<tr>
<td><fmt:message key="usersettings.confirmpassword"/></td>
<td><form:password path="confirmPassword"/></td>
<td/>
</tr>
<tr>
<td colspan="3" style="padding-top:1.5em">
<input type="submit" value="<fmt:message key="common.save"/>" style="margin-right:0.3em">
<input type="button" value="<fmt:message key="common.cancel"/>" onclick="location.href='nowPlaying.view'">
</td>
</tr>
</table>
</form:form>
</c:otherwise>
</c:choose>
</body></html>
|