From 9b3fecd7a022154c0d34e1b86d824586c8c9fbed Mon Sep 17 00:00:00 2001 From: Paulius Gedrikas <16976577+PauliusGedrikas@users.noreply.github.com> Date: Tue, 27 Aug 2019 16:49:03 -0400 Subject: [PATCH] Fix iOS autocapitalizing username field on login (#2687) I propose removing the auto-capitalization from the username field for Safari under iOS by adding autocapitalize="none" to the username form field. Usernames rarely start with a capital letter, so I think this would be a usability improvement for users logging in through iPhones or iPads. Having to login to ZM under iOS, I've been frustrated at the need to always press on the Caps Lock key on the virtual keyboard to disable the capitalization of the first letter. This is because iOS auto capitalized non-password and non-email HTML form fields. ZM is also case sensitive, so "Admin" will not work if the main user is "admin". --- web/skins/classic/views/login.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/skins/classic/views/login.php b/web/skins/classic/views/login.php index 42a4090fc..3f31b3a84 100644 --- a/web/skins/classic/views/login.php +++ b/web/skins/classic/views/login.php @@ -19,7 +19,7 @@ xhtmlHeaders(__FILE__, translate('Login') );