mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 17:15:53 +03:00
[GH-ISSUE #994] Finally Labels above input box (Solved) #845
Labels
No labels
📶 WiFi
🕸️ HTTP
Branch
DEV Help Wanted
Discussion
Documentation
ESP32
Example
Good First Issue
Hotfix
In Progress
Incomplete
Needs Feeback
Priority
QA
Question
Task
Upstream/Dependancy
bug
duplicate
enhancement
invalid
pull-request
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/WiFiManager#845
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @skjolddesign on GitHub (Jan 18, 2020).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/994
WifiManager has been my favorite config portal, except it does not have labels above input boxes.
The solution is to modify html in two const char in WifiManager.h:
const char HTTP_FORM_START[] PROGMEM = "<form method='get' action='wifisave'>SSID:<br><input id='s' name='s' length=32><br/> Password:<br><input id='p' name='p' length=64 type='password'><br/>";const char HTTP_FORM_PARAM[] PROGMEM = "<br/>{p}:<br><input id='{i}' name='{n}' maxlength={l} value='{v}' {c}>";Maybe this can be implemented in master branch so everyone can use this feature?
The result is a better user experience:

@tablatronix commented on GitHub (Jan 19, 2020):
development branch