mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
46 lines
1.7 KiB
HTML
46 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>${TitleMediaBrowser}</title>
|
|
</head>
|
|
<body>
|
|
<div id="wizardAgreementPage" data-role="page" class="page standalonePage wizardPage">
|
|
|
|
<div data-role="content">
|
|
|
|
<div class="ui-corner-all ui-shadow wizardContent" style="position:relative;">
|
|
<form class="wizardAgreementForm">
|
|
|
|
<div>
|
|
<h2 style="float:left;">
|
|
<img src="css/images/mblogoicon.png" />${HeaderTermsOfService}
|
|
</h2>
|
|
</div>
|
|
|
|
<br style="clear:both;" />
|
|
<p>${MessagePleaseAcceptTermsOfService}</p>
|
|
|
|
<p><a href="http://mediabrowser.tv/privacy" target="_blank">${ButtonPrivacyPolicy}</a></p>
|
|
<p><a href="http://mediabrowser.tv/terms" target="_blank">${ButtonTermsOfService}</a></p>
|
|
<ul data-role="listview" class="ulForm">
|
|
<li>
|
|
<label for="chkAccept">${OptionIAcceptTermsOfService}</label>
|
|
<input id="chkAccept" type="checkbox" />
|
|
</li>
|
|
</ul>
|
|
|
|
<div class="wizardNavigation">
|
|
<button type="submit" data-iconpos="right" data-icon="arrow-r" data-inline="true">${LabelNext}</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
$('.wizardAgreementForm').off('submit', WizardAgreementPage.onSubmit).on('submit', WizardAgreementPage.onSubmit);
|
|
</script>
|
|
</div>
|
|
</body>
|
|
</html>
|