]>
Commit | Line | Data |
---|---|---|
8ba7e5b2 | 1 | static const char data_404_html[] = |
6f9272bd JW |
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 | ||
8ba7e5b2 | 6 | static const char data_index_html[] = |
4d886842 | 7 | "<html><head><title>NetWatch</title></head>" |
4e3ef36b JW |
8 | "<body><h1>NetWatch</h1><table cellpadding=0 cellspacing=0 border=0><tr valign=top><td>" |
9 | "<iframe src=\"registers.html\" height=500 width=300></iframe></td><td>" | |
10 | "<iframe src=\"backtrace.html\" height=250 width=150></iframe></td></tr></table>" | |
9343e933 JW |
11 | "<form action=reboot type=post><input type=submit value=\"Reboot!\"></form>" |
12 | "</body></html>"; | |
6f9272bd JW |
13 | |
14 | const struct fsdata_file file_404_html[] = {{NULL, "/404.html", data_404_html, sizeof(data_404_html)}}; | |
15 | const struct fsdata_file file_index_html[] = {{file_404_html, "/index.html", data_index_html, sizeof(data_index_html)}}; | |
16 | ||
17 | #define FS_ROOT file_index_html |