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

71 lines
2.7 KiB
HTML
Raw Normal View History

2013-02-20 20:33:05 -05:00
<!DOCTYPE html>
<html>
<head>
2014-04-05 11:02:50 -04:00
<title>${TitleSignIn}</title>
2013-02-20 20:33:05 -05:00
</head>
<body>
2015-05-05 19:15:47 -04:00
<div id="loginPage" data-role="page" class="page standalonePage" data-theme="b">
2013-02-20 20:33:05 -05:00
<div data-role="content">
2013-07-08 12:13:21 -04:00
<form class="manualLoginForm" id="manualLoginForm" style="display: none; text-align: center; margin: 0 auto;">
2015-05-05 19:15:47 -04:00
2015-01-18 00:45:10 -05:00
<h1 style="text-align: left;">${HeaderPleaseSignIn}</h1>
2013-07-08 12:13:21 -04:00
2014-04-05 11:02:50 -04:00
<label for="txtManualName" style="text-align: left;">${LabelUser}</label>
2013-07-08 15:31:45 -04:00
<input type="text" name="txtManualName" id="txtManualName" required="required" />
2013-07-08 12:13:21 -04:00
2014-04-05 11:02:50 -04:00
<label for="txtManualPassword" style="text-align: left;">${LabelPassword}</label>
2013-07-08 12:13:21 -04:00
<input type="password" name="txtManualPassword" id="txtManualPassword" placeholder="password" />
<p>
<button type="submit" data-icon="check">
2014-04-05 11:02:50 -04:00
${ButtonSignIn}
2013-07-08 12:13:21 -04:00
</button>
</p>
2014-07-07 21:41:03 -04:00
<p>
<button type="button" data-icon="delete" onclick="LoginPage.cancelLogin();" class="btnCancel">
${ButtonCancel}
</button>
</p>
<br />
2013-07-08 12:13:21 -04:00
</form>
<div class="visualLoginForm" style="display: none; text-align: center;">
2015-05-05 19:15:47 -04:00
<br />
2014-07-26 13:30:15 -04:00
<div id="divUsers" class="itemsContainer"></div>
2014-04-05 11:02:50 -04:00
<p class="localhostMessage" style="text-align: center; display: none;">${PasswordLocalhostMessage}</p>
2015-05-05 19:15:47 -04:00
<div class="readOnlyContent" style="margin: 2em auto 0;">
<a href="#" onclick="LoginPage.showManualForm($.mobile.activePage, true);" data-role="button" data-icon="lock">${ButtonManualLogin}</a>
</div>
</div>
<div class="readOnlyContent" style="margin: 0 auto 1em;">
<a href="forgotpassword.html" data-role="button" data-icon="info">
${ButtonForgotPassword}
</a>
2014-02-08 15:02:35 -05:00
2015-05-05 19:15:47 -04:00
<p class="disclaimer" style="text-align: center; margin-top: 2em;"></p>
<div class="connectButtons" style="display:none;">
<br />
<a href="selectserver.html" data-role="button" data-icon="action">
${ButtonChangeServer}
</a>
<a href="connectlogin.html?mode=connect" data-role="button" data-icon="lock">
${ButtonSignInWithConnect}
</a>
</div>
</div>
2013-02-20 20:33:05 -05:00
</div>
<script type="text/javascript">
2013-07-08 12:13:21 -04:00
$('#manualLoginForm').on('submit', LoginPage.onManualSubmit);
2013-02-20 20:33:05 -05:00
</script>
</div>
</body>
</html>