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

61 lines
2.2 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>
<div id="loginPage" data-role="page" class="page standalonePage">
<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-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 />
<p>
<a href="forgotpassword.html">
${ButtonForgotPassword}
</a>
</p>
2013-07-08 12:13:21 -04:00
</form>
<div class="visualLoginForm" style="display: none; text-align: center;">
2015-01-18 00:45:10 -05: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>
2014-11-23 15:08:52 -05:00
<p>
<a href="#" class="lnkManualLogin" onclick="LoginPage.showManualForm($.mobile.activePage, true);">${ButtonManualLogin}</a>
2015-01-18 00:45:10 -05:00
<a href="forgotpassword.html" style="margin-left: 2em;">${ButtonForgotPassword}</a>
2014-11-23 15:08:52 -05:00
</p>
2014-02-08 15:02:35 -05:00
</div>
2013-02-20 20:33:05 -05:00
<p class="disclaimer" style="text-align: center; margin-top: 2em;"></p>
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>