HTTPServer/__welcome.cpp
2024-07-09 20:21:46 -07:00

21 lines
665 B
C++

#include "__welcome.h"
namespace http {
__welcome::__welcome() {
*this << "<div class=\"adminheader\">"
"Session Id: $[__session_id] <br>User: *ADMIN"
"</div><br>";
"<div id=\"admin\" class=\"window\">"
"<form name='admin'>"
"<p>You have successfully set up a JETServer."
"<br>The configuration has not yet been established for this web site.</p>"
"<input type=\"button\" onmousedown=\"process('', 'admin', 'admin'); return true;\" name=\"button1\" value=\"Configure\">"
"</form></div><br>";
"<div id=\"app1\"></div><br>";
}
}