#ifndef ____configure_h__ #define ____configure_h__ namespace http { class __configure : public HTTPPage { public: __configure(HTTPParameters &p) { page(p); } int page(HTTPParameters &p) override { p.data << "
" "

System Configuration

" "
" "
Web Domain Name:
" " " "
" "
" "
View Directory:
" " " "
" "
" "
Image Library Directory:
" " " "
" "

Session Id: " << p.httpSession.getSessionId() << "" "
The configuration has not yet been established for this web site.

" " " "
"; p.httpRequest.response.addHeader(coreutils::IMFHeader("Content-Type", "text/html")); return true; } }; } #endif