2 Commits

Author SHA1 Message Date
9e00fc1135 Add placeholder for password input
Signed-off-by: YoungSoo Shin <shinys000114@gmail.com>
2025-09-24 12:21:48 +09:00
44a739a0bd Fix mute unknown uart event
Signed-off-by: YoungSoo Shin <shinys000114@gmail.com>
2025-09-24 12:10:09 +09:00
2 changed files with 1 additions and 2 deletions

View File

@@ -193,7 +193,6 @@ static void uart_event_task(void* arg)
// Muting this event because it is too noisy // Muting this event because it is too noisy
break; break;
default: default:
ESP_LOGI(TAG, "unhandled uart event type: %d", event.type);
break; break;
} }
} }

View File

@@ -349,7 +349,7 @@
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label for="wifi-password-connect" class="form-label">Password</label> <label for="wifi-password-connect" class="form-label">Password</label>
<input type="password" class="form-control" id="wifi-password-connect"> <input type="password" class="form-control" id="wifi-password-connect" placeholder="Leave blank for open network">
</div> </div>
</div> </div>
<div class="modal-footer"> <div class="modal-footer">