36 lines
880 B
C
36 lines
880 B
C
|
|
#ifndef UPLOAD_PAGE_H
|
|
#define UPLOAD_PAGE_H
|
|
|
|
const char upload_page_html[] PROGMEM = R"rawliteral(
|
|
<!DOCTYPE HTML><html>
|
|
<head>
|
|
<title>Upload Image</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<style>
|
|
body { font-family: Arial; text-align: center; margin:0px auto; padding-top: 30px;}
|
|
.button {
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
padding: 10px 20px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
font-size: 16px;
|
|
margin: 4px 2px;
|
|
cursor: pointer;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Upload BMP Image</h1>
|
|
<form action="/upload-bmp" method="post" enctype="multipart/form-data">
|
|
<input type="file" name="image" accept=".bmp">
|
|
<input type="submit" value="Upload" class="button">
|
|
</form>
|
|
</body>
|
|
</html>
|
|
)rawliteral";
|
|
|
|
#endif // UPLOAD_PAGE_H
|