- Supports Static and Dynamic webpages.
- To use change the
server_config.mk
file as per your need and run. - A TestWebsite is contained that includes :
- Both
GET
andPOST
kind of forms. - Basic authentication with register and login to showcase the session management using
COOKIES
. - A dashboard with user name appearing to show the dynamic rendering.
responseHandler.cpp
contains the example code on how to respond toGET
andPOST
requests and also how to render dynamic webpages.
- Both
- To use run the
make
file and thenmake run
- Currently tested only on linux.
- Default IP and port is
127.0.0.1:8080
- Session management --
DONE
- POST method Implementation --
DONE
- Dynamic webpages support added using reflection mechanism --
DONE