/* * simpleviewer and streamviewer */ const uint8_t index_simple_html[] = R"=====( ESP32-CAM Simplified View
)====="; size_t index_simple_html_len = sizeof(index_simple_html)-1; /* Stream Viewer */ const uint8_t streamviewer_html[] = R"=====( ESP32-CAM StreamViewer
)====="; size_t streamviewer_html_len = sizeof(streamviewer_html)-1; /* Captive Portal page we replace the <> delimited strings with correct values as it is served */ const std::string portal_html = R"=====( <CAMNAME> - portal

- access portal


Camera Details
)====="; /* Error page we replace the <> delimited strings with correct values as it is served */ const std::string error_html = R"=====( <CAMNAME> - Error

)=====";