/* * http_pages.c * * Created on: 09/04/2026 * Author: carec */ #include "http_pages.h" const char *HTTP_Page_Index(void) { return "HTTP/1.1 200 OK\r\n" "Content-Type: text/html; charset=utf-8\r\n" "Connection: close\r\n" "\r\n" "" "" "" "Portal WiFi" "" "
" "

Portal WiFi

" "

Configuração da rede principal.

" "
" "" "" "" "
" "
"; } const char *HTTP_Page_Saved(void) { return "HTTP/1.1 200 OK\r\n" "Content-Type: text/html; charset=utf-8\r\n" "Connection: close\r\n" "\r\n" "

Guardado.

Configuração recebida pelo STM32.

"; } const char *HTTP_Page_404(void) { return "HTTP/1.1 404 Not Found\r\n" "Content-Type: text/html; charset=utf-8\r\n" "Connection: close\r\n" "\r\n" "

404

"; }