-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSetHtml.h
More file actions
20 lines (20 loc) · 767 Bytes
/
SetHtml.h
File metadata and controls
20 lines (20 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
String setHtml = "<!DOCTYPE html>\
<html>\
<head>\
<title>Funderglow</title>\
</head>\
<body>\
<form action=\"/set\">\
<label for=\"red\">Red</label>\
<input type=\"number\" id=\"red\" name=\"red\"><br>\
<label for=\"green\">Green:</label>\
<input type=\"number\" id=\"green\" name=\"green\"><br>\
<label for=\"blue\">Blue:</label>\
<input type=\"number\" id=\"blue\" name=\"blue\"><br>\
<input type=\"submit\" value=\"Set Colors\">\
</form>\
<button onclick=\"document.location='wave'\">Waves</button><br>\
<button onclick=\"document.location='test'\">Test</button><br>\
<button onclick=\"document.location='smoke'\">Smoke</button><br>\
</body>\
</html>";