1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/src/wizarduser.html

37 lines
1.9 KiB
HTML
Raw Normal View History

2019-01-23 11:33:34 +00:00
<div id="wizardUserPage" data-role="page" class="page standalonePage wizardPage">
2017-05-06 15:42:17 -04:00
<div class="padded-left padded-right padded-top">
2016-03-16 01:33:31 -04:00
<div class="ui-corner-all ui-shadow wizardContent">
<form class="wizardUserForm">
2018-09-12 19:26:21 +02:00
<div class="verticalSection">
<h1 class="sectionTitle">${TellUsAboutYourself}</h1>
2018-09-12 19:26:21 +02:00
<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>
2018-09-12 19:26:21 +02:00
</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>
2016-03-16 01:33:31 -04:00
</div>
2016-10-13 11:07:21 -04:00
2016-03-16 01:33:31 -04:00
<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>
2016-03-16 01:33:31 -04:00
</div>
</form>
2013-02-20 20:33:05 -05:00
</div>
</div>
2018-12-11 18:54:50 -05:00
</div>