Skip to content

Commit

Permalink
not found page
Browse files Browse the repository at this point in the history
  • Loading branch information
imarvinle committed Mar 2, 2019
1 parent 8f23e44 commit d48b78d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions version_0.3/src/http/Server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@



char NOT_FOUND_PAGE[] = "\"<html>\\n\"\n"
"\"<head><title>404 Not Found</title></head>\\n\"\n"
"\"<body bgcolor=\"white\">\n"
"\"<center><h1>404 Not Found</h1></center>\\n\"\n"
"\"<hr><center>LC Server/0.3 (Linux)</center>\\n\"\n"
"\"</body>\\n\"\n"
"\"</html>\"";
char NOT_FOUND_PAGE[] = "<html>\n"
"<head><title>404 Not Found</title></head>\n"
"<body bgcolor=\"white\">\n"
"<center><h1>404 Not Found</h1></center>\n"
"<hr><center>LC Server/0.3 (Linux)</center>\n"
"</body>\n"
"</html>";

char FORBIDDEN_PAGE[] = "<html>\n"
"<head><title>403 Forbidden</title></head>\n"
Expand Down

0 comments on commit d48b78d

Please sign in to comment.