
WebOS 4 apparently has a ligature bug that prevents icons with an underscore from working as intended. This replaces them with either the corresponding CSS class or unicode escape code, depending on context. Refactoring is needed in order to be able to use CSS classes everywhere, so in the interest of time, this does the best available currently. Fixes #678
36 lines
1.9 KiB
HTML
36 lines
1.9 KiB
HTML
<div id="wizardUserPage" data-role="page" class="page standalonePage wizardPage">
|
|
<div class="padded-left padded-right padded-top">
|
|
<div class="ui-corner-all ui-shadow wizardContent">
|
|
<form class="wizardUserForm">
|
|
<div class="verticalSection">
|
|
<h1 class="sectionTitle">${TellUsAboutYourself}</h1>
|
|
<p style="margin-top:2em;">${UserProfilesIntro}</p>
|
|
<br />
|
|
<div class="inputContainer">
|
|
<input is="emby-input" type="text" id="txtUsername" label="${LabelUsername}" required="required" />
|
|
<div class="fieldDescription">${SelectAdminUsername}</div>
|
|
</div>
|
|
<div class="inputContainer">
|
|
<input is="emby-input" id="txtManualPassword" type="password" label="${LabelPassword}" />
|
|
<div class="fieldDescription">${LeaveBlankToNotSetAPassword}</div>
|
|
</div>
|
|
<div class="inputContainer">
|
|
<input is="emby-input" id="txtPasswordConfirm" type="password" label="${LabelPasswordConfirm}" />
|
|
</div>
|
|
<p>${MoreUsersCanBeAddedLater}</p>
|
|
</div>
|
|
|
|
<div class="wizardNavigation">
|
|
<button is="emby-button" type="button" class="raised button-cancel" onclick="history.back();">
|
|
<i class="material-icons arrow_back"></i>
|
|
<span>${LabelPrevious}</span>
|
|
</button>
|
|
<button is="emby-button" type="submit" class="raised button-submit">
|
|
<span>${LabelNext}</span>
|
|
<i class="material-icons">arrow_forward</i>
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|