jellyfin-web/dashboard-ui/userpassword.html

53 lines
2.8 KiB
HTML
Raw Normal View History

2013-02-20 18:33:05 -07:00
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
2014-04-24 10:30:59 -07:00
<div id="updatePasswordPage" data-role="page" class="page type-interior userProfilesConfigurationPage publicUserPage">
2013-02-20 18:33:05 -07:00
<div data-role="content">
<div class="content-primary">
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
2014-04-01 15:23:07 -07:00
<a href="#" onclick="Dashboard.navigate('useredit.html', true);" data-role="button">${TabProfile}</a>
<a href="#" data-role="button" onclick="Dashboard.navigate('userimage.html', true);">${TabImage}</a>
<a href="#" data-role="button" onclick="Dashboard.navigate('userparentalcontrol.html', true);" id="lnkParentalControl" style="display: none;">${TabLibraryAccess}</a>
<a href="#" data-role="button" class="ui-btn-active">${TabPassword}</a>
<a href="#" data-role="button" onclick="Dashboard.navigate('usersettings.html', true);">${TabPreferences}</a>
2013-02-20 18:33:05 -07:00
</div>
2014-04-01 15:23:07 -07:00
<h2 class="formheader" style="display: none;">${HeaderCreatePassword}</h2>
2013-02-20 18:33:05 -07:00
<form id="updatePasswordForm">
<ul data-role="listview" class="ulForm">
<li id="fldCurrentPassword" style="display: none;">
2014-04-01 15:23:07 -07:00
<label for="txtCurrentPassword">${LabelCurrentPassword}</label>
2013-02-20 18:33:05 -07:00
<input type="password" id="txtCurrentPassword" name="txtCurrentPassword" />
</li>
<li>
2014-04-01 15:23:07 -07:00
<label for="txtNewPassword">${LabelNewPassword}</label>
2013-02-20 18:33:05 -07:00
<input type="password" id="txtNewPassword" name="txtNewPassword" />
</li>
<li>
2014-04-01 15:23:07 -07:00
<label for="txtNewPasswordConfirm">${LabelNewPasswordConfirm}</label>
2013-02-20 18:33:05 -07:00
<input type="password" id="txtNewPasswordConfirm" name="txtNewPasswordConfirm" />
</li>
<li>
2013-12-24 11:37:29 -07:00
<button type="submit" data-theme="b" data-icon="check">
2014-04-01 15:23:07 -07:00
${ButtonSave}
2013-02-20 18:33:05 -07:00
</button>
<div id="btnResetPassword" style="display: none;">
2013-12-24 11:37:29 -07:00
<button type="button" data-icon="lock" onclick="UpdatePasswordPage.resetPassword();">
2014-04-01 15:23:07 -07:00
${ButtonResetPassword}
2013-02-20 18:33:05 -07:00
</button>
</div>
</li>
</ul>
</form>
</div>
</div>
<script type="text/javascript">
$('#updatePasswordForm').on('submit', UpdatePasswordPage.onSubmit);
</script>
</div>
</body>
</html>