]> Joshua Wise's Git repositories - netwatch.git/blame - net/http/fsdata.c
Hit paging to clean it up a bit. Add a reboot button.
[netwatch.git] / net / http / fsdata.c
CommitLineData
6f9272bd
JW
1static const unsigned char data_404_html[] =
2 "<html><head><title>404 Not Found</title></head>"
3 "<body><h1>404 Not Found</h1><p>This is probably not the machine you're looking for...</p></body>"
4 "</html>";
5
6static const unsigned char data_index_html[] =
4d886842 7 "<html><head><title>NetWatch</title></head>"
923ea2c2 8 "<body><h1>NetWatch</h1><iframe src=\"registers.html\" height=100 width=600></iframe><form action=reboot type=post><input type=submit value=\"Reboot!\"></form></body>"
6f9272bd
JW
9 "</html>";
10
11const struct fsdata_file file_404_html[] = {{NULL, "/404.html", data_404_html, sizeof(data_404_html)}};
12const struct fsdata_file file_index_html[] = {{file_404_html, "/index.html", data_index_html, sizeof(data_index_html)}};
13
14#define FS_ROOT file_index_html
This page took 0.023489 seconds and 4 git commands to generate.