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/forgotPassword/index.html

25 lines
1.1 KiB
HTML
Raw Normal View History

2019-01-23 11:33:34 +00:00
<div data-role="page" id="forgotPasswordPage" class="page standalonePage forgotPasswordPage">
2020-07-26 01:42:59 +03:00
<div class="padded-left padded-right padded-bottom-page">
2016-03-16 01:33:31 -04:00
<form class="forgotPasswordForm" style="text-align: center; margin: 0 auto;">
<div style="text-align: left;">
2020-08-16 20:34:39 +09:00
<h1>${ButtonForgotPassword}</h1>
2016-06-11 11:56:15 -04:00
<div class="inputContainer">
<input is="emby-input" type="text" id="txtName" label="${LabelUser}" autocomplete="off"/>
2016-03-16 01:33:31 -04:00
<div class="fieldDescription">${LabelForgotPasswordUsernameHelp}</div>
</div>
2016-03-16 01:33:31 -04:00
<div>
2016-06-18 16:31:22 -04:00
<button is="emby-button" type="submit" class="raised submit block">
<span>${ButtonSubmit}</span>
</button>
2016-06-18 16:31:22 -04:00
<button is="emby-button" type="button" class="raised cancel block btnCancel" onclick="history.back();">
<span>${ButtonCancel}</span>
</button>
</div>
2016-03-16 01:33:31 -04:00
</div>
</form>
</div>
2019-12-16 00:07:55 +09:00
</div>