mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-22 14:23:35 -07:00
fix(login): prevent mobile keyboards from capitalizing username input
Added 'autocapitalize="none"' to the username input field in the login form to ensure mobile devices do not automatically capitalize the first character. This improves UX for entering usernames on mobile devices.
This commit is contained in:
parent
778a158597
commit
0dcc8d72cc
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@
|
||||||
<form id="loginform">
|
<form id="loginform">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<label for="username">QBT_TR(Username)QBT_TR[CONTEXT=Login]</label><br>
|
<label for="username">QBT_TR(Username)QBT_TR[CONTEXT=Login]</label><br>
|
||||||
<input type="text" id="username" name="username" autocomplete="username" autofocus required>
|
<input type="text" id="username" name="username" autocomplete="username" autofocus required autocapitalize="none">
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<label for="password">QBT_TR(Password)QBT_TR[CONTEXT=Login]</label><br>
|
<label for="password">QBT_TR(Password)QBT_TR[CONTEXT=Login]</label><br>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue