move all source files to src/
[citadel.git] / webcit / src / setup_wizard.c
1 /*
2  * $Id$
3  *
4  * First-time setup wizard
5  */
6
7 #include "webcit.h"
8
9
10 /*
11  */
12 void do_setup_wizard(void)
13 {
14         char *step;
15         FILE *fp;
16
17         step = bstr("step");
18
19         if (!strcasecmp(step, "Finish")) {
20                 fp = fopen(wizard_filename, "w");
21                 if (fp != NULL) {
22                         fprintf(fp, "%d\n", serv_info.serv_rev_level);
23                         fclose(fp);
24                 }
25                 do_welcome();
26                 return;
27         }
28
29         output_headers(1, 1, 2, 0, 0, 0);
30
31         wprintf("<div id=\"banner\">\n");
32         wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=\"#444455\"><TR><TD>");
33         wprintf("<img src=\"static/citadel-logo.gif\" WIDTH=64 HEIGHT=64 ALT=\" \" ALIGN=MIDDLE>");
34         wprintf("<SPAN CLASS=\"titlebar\">&nbsp;First time setup");
35         wprintf("</SPAN></TD><TD ALIGN=RIGHT>");
36         wprintf("</TD></TR></TABLE>\n");
37         wprintf("</div>\n"
38                 "<div id=\"content\">\n");
39
40         wprintf("<div class=\"fix_scrollbar_bug\">"
41                 "<form method=\"post\" action=\"setup_wizard\">\n"
42         );
43
44         wprintf("<div align=center>"
45                 "This is where the setup wizard will be placed.<br>\n"
46                 "For now, just click Finish.<br><br>\n"
47         );
48
49         wprintf("<INPUT TYPE=\"submit\" NAME=\"step\" VALUE=\"Next\">\n");
50         wprintf("<INPUT TYPE=\"submit\" NAME=\"step\" VALUE=\"Finish\">\n");
51
52         wprintf("</form></div></div>\n");
53         wDumpContent(1);
54 }
55
56