mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #578 from ryan-hartzell/login-autofill-attributes
Add autocomplete attributes to login fields
This commit is contained in:
commit
109ea9e50c
2 changed files with 9 additions and 5 deletions
|
@ -31,6 +31,7 @@
|
||||||
- [ferferga](https://github.com/ferferga)
|
- [ferferga](https://github.com/ferferga)
|
||||||
- [bilde2910](https://github.com/bilde2910)
|
- [bilde2910](https://github.com/bilde2910)
|
||||||
- [Daniel Hartung](https://github.com/dhartung)
|
- [Daniel Hartung](https://github.com/dhartung)
|
||||||
|
- [Ryan Hartzell](https://github.com/ryan-hartzell)
|
||||||
|
|
||||||
# Emby Contributors
|
# Emby Contributors
|
||||||
|
|
||||||
|
|
|
@ -6,14 +6,17 @@
|
||||||
|
|
||||||
<h1 style="margin-top:1em;text-align: left;">${HeaderPleaseSignIn}</h1>
|
<h1 style="margin-top:1em;text-align: left;">${HeaderPleaseSignIn}</h1>
|
||||||
|
|
||||||
<div style="height:0; overflow: hidden;"><input type="text" name="fakeusernameremembered" tabindex="-1" /><input type="password" name="fakepasswordremembered" tabindex="-1" /></div>
|
<div style="height:0; overflow: hidden;">
|
||||||
|
<input type="text" name="fakeusernameremembered" tabindex="-1" />
|
||||||
<div class="inputContainer">
|
<input type="password" name="fakepasswordremembered" tabindex="-1" />
|
||||||
<input is="emby-input" type="text" id="txtManualName" required="required" label="${LabelUser}" />
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="inputContainer">
|
<div class="inputContainer">
|
||||||
<input is="emby-input" id="txtManualPassword" type="password" label="${LabelPassword}" />
|
<input is="emby-input" type="text" id="txtManualName" required="required" label="${LabelUser}" autocomplete="username" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="inputContainer">
|
||||||
|
<input is="emby-input" id="txtManualPassword" type="password" label="${LabelPassword}" autocomplete="current-password" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<label class="checkboxContainer">
|
<label class="checkboxContainer">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue