But after successful upload, ESP module continues restating.
If I remove snprintf function it is ok.
void html_page(){
int sec = millis() / 1000;
int min1 = sec / 60;
int hr = min1 / 60;
const char dataHTML[]=R"RAW(
<html>
<body>
<p>Uptime: %d:%d:%d</p>
</body>
</html>
)RAW";
snprintf(page,100,dataHTML,sec,min1,hr);
Serial.println(page);
server.send(200, "text/html", page);
}