char output[10000];
char *html_header(char *title)
{
memset(output, 0x0, 10000);
char *text = "
\n"
"
\n"
"\n"
"\n"
"\n"
" | | \n"
" |
|
\n"
"\n"
"\n"
"\n"
"Athena « Portal » |
| "
" |
\n";
sprintf(output, "%s\n%s\n", title, text);
return output;
}
char *html_start_form(char *location, char *action)
{
memset(output, 0x0, 10000);
sprintf(output, "";
}