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

57 lines
2.5 KiB
HTML
Raw Normal View History

<div id="loginPage" data-role="page" class="page standalonePage flex flex-direction-column" data-backbutton="false">
<div class="padded-left padded-right padded-bottom-page margin-auto-y">
<form class="manualLoginForm margin-auto-x hide">
2020-07-19 04:36:47 +02:00
<div class="padded-left padded-right flex align-items-center justify-content-center">
<h1 class="sectionTitle">${HeaderPleaseSignIn}</h1>
</div>
2016-05-28 15:47:56 -04:00
<div class="inputContainer">
<input is="emby-input" type="text" id="txtManualName" required="required" label="${LabelUser}" autocomplete="username" autocapitalize="off" />
2016-05-28 15:47:56 -04:00
</div>
2013-07-08 12:13:21 -04:00
2016-05-28 15:47:56 -04:00
<div class="inputContainer">
2019-11-14 06:48:06 -08:00
<input is="emby-input" id="txtManualPassword" type="password" label="${LabelPassword}" autocomplete="current-password" />
2016-05-28 15:47:56 -04:00
</div>
2015-07-28 23:42:03 -04:00
2016-08-20 02:58:35 -04:00
<label class="checkboxContainer">
<input is="emby-checkbox" type="checkbox" class="chkRememberLogin" checked />
<span>${RememberMe}</span>
</label>
2016-09-09 02:59:23 -04:00
<button is="emby-button" type="submit" class="raised button-submit block">
2016-06-18 16:31:22 -04:00
<span>${ButtonSignIn}</span>
</button>
2019-12-16 00:07:55 +09:00
2016-03-16 01:33:31 -04:00
<div style="margin-top:.5em;">
2016-06-18 16:31:22 -04:00
<button is="emby-button" type="button" class="raised cancel block btnCancel">
<span>${ButtonCancel}</span>
</button>
2016-03-16 01:33:31 -04:00
</div>
</form>
2013-07-08 12:13:21 -04:00
2016-03-16 01:33:31 -04:00
<div class="visualLoginForm" style="text-align: center;">
2017-10-01 20:13:43 -04:00
<h1 style="margin-top:1em;">${HeaderPleaseSignIn}</h1>
2016-07-30 02:06:01 -04:00
<div id="divUsers" class="itemsContainer vertical-wrap centered"></div>
2016-03-16 01:33:31 -04:00
</div>
2015-05-05 19:15:47 -04:00
2016-03-16 01:33:31 -04:00
<div class="readOnlyContent" style="margin: .5em auto 1em;">
<button is="emby-button" type="button" class="raised cancel block btnManual">
<span>${ButtonManualLogin}</span>
</button>
<button is="emby-button" type="button" class="raised cancel block btnQuick hide">
2020-04-26 16:19:58 -05:00
<span>${ButtonUseQuickConnect}</span>
2020-04-11 16:24:40 -05:00
</button>
2016-06-18 16:31:22 -04:00
<button is="emby-button" type="button" class="raised cancel block btnForgotPassword">
<span>${ButtonForgotPassword}</span>
</button>
2015-06-17 11:39:46 -04:00
<button is="emby-button" type="button" class="raised block btnSelectServer">
<span>${ButtonChangeServer}</span>
</button>
2013-02-20 20:33:05 -05:00
2016-03-16 01:33:31 -04:00
<p class="disclaimer" style="text-align: center; margin-top: 2em;"></p>
2013-02-20 20:33:05 -05:00
</div>
</div>
2019-12-16 00:07:55 +09:00
</div>