From 2ade696e8b03bf406ec3054c503ed69cb01ebf52 Mon Sep 17 00:00:00 2001 From: technyon Date: Mon, 18 Jul 2022 21:10:09 +0200 Subject: [PATCH] increase max username length --- WebCfgServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WebCfgServer.cpp b/WebCfgServer.cpp index 7233156..0836d99 100644 --- a/WebCfgServer.cpp +++ b/WebCfgServer.cpp @@ -444,7 +444,7 @@ void WebCfgServer::buildCredHtml(String &response) response.concat("
"); response.concat("

Credentials

"); response.concat(""); - printInputField(response, "CREDUSER", "User (# to clear)", _preferences->getString(preference_cred_user).c_str(), 20); + printInputField(response, "CREDUSER", "User (# to clear)", _preferences->getString(preference_cred_user).c_str(), 30); printInputField(response, "CREDPASS", "Password (max 30 characters)", "*", 30, true); printInputField(response, "CREDPASSRE", "Retype password", "*", 30, true); response.concat("
");