jellyfin-web/dashboard-ui/wizarduser.html

41 lines
1.5 KiB
HTML
Raw Normal View History

2013-02-20 18:33:05 -07:00
<!DOCTYPE html>
<html>
<head>
2014-04-01 15:23:07 -07:00
<title>${TitleMediaBrowser}</title>
2013-02-20 18:33:05 -07:00
</head>
<body>
<div id="wizardUserPage" data-role="page" class="page standalonePage wizardPage">
<div data-role="content">
<div class="ui-corner-all ui-shadow wizardContent">
<form id="wizardUserForm">
<h2>
2014-03-31 14:04:22 -07:00
<img src="css/images/mblogoicon.png" style="height: 30px;" />${TellUsAboutYourself}</h2>
2013-02-20 18:33:05 -07:00
2014-03-31 14:04:22 -07:00
<p>${UserProfilesIntro}</p>
2013-02-20 18:33:05 -07:00
<ul data-role="listview" class="ulForm">
<li>
2014-03-31 14:04:22 -07:00
<label for="txtUsername">${LabelYourFirstName}</label>
2013-02-20 18:33:05 -07:00
<input type="text" id="txtUsername" name="txtUsername" required="required" />
2014-03-31 14:04:22 -07:00
<div class="fieldDescription">${MoreUsersCanBeAddedLater}</div>
2013-02-20 18:33:05 -07:00
</li>
</ul>
<div class="wizardNavigation">
2014-03-30 18:00:47 -07:00
<button type="button" data-iconpos="left" data-icon="arrow-l" data-inline="true" onclick="history.back();">${LabelPrevious}</button>
<button type="submit" data-iconpos="right" data-icon="arrow-r" data-inline="true">${LabelNext}</button>
2013-02-20 18:33:05 -07:00
</div>
</form>
</div>
</div>
<script type="text/javascript">
$('#wizardUserForm').on('submit', WizardUserPage.onSubmit);
</script>
</div>
</body>
</html>