2019-01-23 11:33:34 +00:00
|
|
|
<div id="userImagePage" data-role="page" class="page libraryPage userPreferencesPage userPasswordPage noSecondaryNavPage" data-title="${HeaderProfile}" data-menubutton="false">
|
2017-04-18 13:48:27 -04:00
|
|
|
<div class="padded-left padded-right padded-bottom-page">
|
2016-03-16 01:33:31 -04:00
|
|
|
<div class="readOnlyContent" style="margin: 0 auto; padding: 0 1em;">
|
2019-09-26 01:15:36 +09:00
|
|
|
<div style="position:relative;display:inline-block;max-width:200px;">
|
|
|
|
<input id="uploadImage" type="file" accept="image/*" style="position:absolute;right:0;width:100%;height:100%;opacity:0;" />
|
2019-11-25 16:15:17 +01:00
|
|
|
<div id="image" style="width:200px;height:200px;background-repeat:no-repeat;background-position:center;border-radius:100%;background-size:cover;"></div>
|
2019-09-26 01:15:36 +09:00
|
|
|
</div>
|
|
|
|
<div style="vertical-align:top;margin:1em 2em;display:inline-block;">
|
|
|
|
<h2 class="username" style="margin:0;font-size:xx-large;"></h2>
|
|
|
|
<br/>
|
|
|
|
<button is="emby-button" type="button" class="raised hide" id="btnAddImage">
|
|
|
|
<span>${ButtonAddImage}</span>
|
|
|
|
</button>
|
2016-09-09 02:59:23 -04:00
|
|
|
<button is="emby-button" type="button" class="raised hide" id="btnDeleteImage">
|
2016-08-10 23:55:44 -04:00
|
|
|
<span>${ButtonDeleteImage}</span>
|
|
|
|
</button>
|
2014-10-15 23:26:39 -04:00
|
|
|
</div>
|
2016-03-16 01:33:31 -04:00
|
|
|
</div>
|
2017-10-17 15:48:17 -04:00
|
|
|
<form class="updatePasswordForm passwordSection userProfileSettingsForm hide" style="margin: 3em auto 0;">
|
|
|
|
<div class="verticalSection">
|
|
|
|
<h2 class="sectionTitle">
|
2016-03-16 01:33:31 -04:00
|
|
|
${HeaderPassword}
|
2017-10-17 15:48:17 -04:00
|
|
|
</h2>
|
2016-06-22 00:39:47 -04:00
|
|
|
<div id="fldCurrentPassword" class="inputContainer hide">
|
2016-06-11 11:56:15 -04:00
|
|
|
<input is="emby-input" type="password" id="txtCurrentPassword" label="${LabelCurrentPassword}" autocomplete="off" />
|
|
|
|
</div>
|
|
|
|
<div class="inputContainer">
|
|
|
|
<input is="emby-input" type="password" id="txtNewPassword" label="${LabelNewPassword}" autocomplete="off" />
|
|
|
|
</div>
|
|
|
|
<div class="inputContainer">
|
|
|
|
<input is="emby-input" type="password" id="txtNewPasswordConfirm" label="${LabelNewPasswordConfirm}" autocomplete="off" />
|
|
|
|
</div>
|
|
|
|
<div>
|
2019-09-26 01:15:36 +09:00
|
|
|
<button is="emby-button" type="submit" class="raised button-submit block">
|
|
|
|
<span>${ButtonSave}</span>
|
|
|
|
</button>
|
2016-08-10 23:55:44 -04:00
|
|
|
<button is="emby-button" type="button" id="btnResetPassword" class="raised cancel block hide">
|
|
|
|
<span>${ButtonResetPassword}</span>
|
|
|
|
</button>
|
2014-10-23 00:26:01 -04:00
|
|
|
</div>
|
2016-03-16 01:33:31 -04:00
|
|
|
</div>
|
|
|
|
</form>
|
2017-10-17 15:48:17 -04:00
|
|
|
<form class="localAccessForm localAccessSection userProfileSettingsForm hide" style="margin: 3em auto 0;">
|
|
|
|
<div class="verticalSection">
|
|
|
|
<h2 class="sectionTitle">
|
2016-03-16 01:33:31 -04:00
|
|
|
${HeaderEasyPinCode}
|
2017-10-17 15:48:17 -04:00
|
|
|
</h2>
|
2016-06-11 11:56:15 -04:00
|
|
|
<div>${EasyPasswordHelp}</div>
|
|
|
|
<br />
|
|
|
|
<div class="inputContainer">
|
|
|
|
<input is="emby-input" type="number" id="txtEasyPassword" label="${LabelEasyPinCode}" autocomplete="off" pattern="[0-9]*" step="1" maxlength="5" />
|
|
|
|
</div>
|
2016-08-05 15:34:10 -04:00
|
|
|
<div class="checkboxContainer checkboxContainer-withDescription">
|
2016-06-11 11:56:15 -04:00
|
|
|
<label>
|
|
|
|
<input type="checkbox" is="emby-checkbox" class="chkEnableLocalEasyPassword" />
|
|
|
|
<span>${LabelInNetworkSignInWithEasyPassword}</span>
|
|
|
|
</label>
|
|
|
|
<div class="fieldDescription checkboxFieldDescription">${LabelInNetworkSignInWithEasyPasswordHelp}</div>
|
|
|
|
</div>
|
|
|
|
<div>
|
2016-09-09 02:59:23 -04:00
|
|
|
<button is="emby-button" type="submit" class="raised button-submit block">
|
2016-09-18 12:08:32 -04:00
|
|
|
<span>${ButtonSave}</span>
|
2016-08-10 23:55:44 -04:00
|
|
|
</button>
|
|
|
|
<button is="emby-button" type="button" id="btnResetEasyPassword" class="raised cancel block hide">
|
|
|
|
<span>${ButtonResetEasyPassword}</span>
|
|
|
|
</button>
|
2014-10-23 00:26:01 -04:00
|
|
|
</div>
|
2016-03-16 01:33:31 -04:00
|
|
|
</div>
|
|
|
|
</form>
|
2014-10-15 23:26:39 -04:00
|
|
|
</div>
|
2016-03-16 01:33:31 -04:00
|
|
|
</div>
|