We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Latest version (7128981)
At https://github.com/prampec/IotWebConf/blob/master/src/IotWebConfParameter.h#L31
this code is there:
const char IOTWEBCONF_HTML_FORM_PARAM[] PROGMEM = "<div class='{s}'><label for='{i}'>{b}</label><input type='{t}' id='{i}' " "name='{i}' {l} placeholder='{p}' value='{v}' {c}/>" "<div class='em'>{e}</div></div>\n";
{l} has no key, so field is not limited.
{l}
I think it might be this:
const char IOTWEBCONF_HTML_FORM_PARAM[] PROGMEM = "<div class='{s}'><label for='{i}'>{b}</label><input type='{t}' id='{i}' " "name='{i}' maxlength={l} placeholder='{p}' value='{v}' {c}/>" "<div class='em'>{e}</div></div>\n";
similar to other places.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Latest version (7128981)
At https://github.com/prampec/IotWebConf/blob/master/src/IotWebConfParameter.h#L31
this code is there:
{l}
has no key, so field is not limited.I think it might be this:
similar to other places.
The text was updated successfully, but these errors were encountered: