#include "__setupadmin.h" #include "__mainmenu.h" namespace http { __setupadmin::__setupadmin(HTTPParameters &p) { page(p); } int __setupadmin::page(HTTPParameters &p) { button1Click *click = new button1Click(); coreutils::ZString button1_Click(p.actionList.addAction(click)); p.data << "
" "

Please enter credential information" " for the security officer, then press Set Admin Profile button below:" "

" "
User Name:
" " " "
" "
" "
Password:
" " " "
" "
" "
Verify Password:
" " " "
" "

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 1; } bool __setupadmin::button1Click::action(HTTPParameters &p) { __mainmenu mainmenu(p); return true; } }