X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fsetup_wizard.c;h=bbac2183c53eee8f0dde127ef9a972bcc2e70586;hb=3b2b93ca40ee734fc69a69e94a183c1a7e2bfb69;hp=66deb8c1214b5640c80958c87ab06585b1286bf0;hpb=6ec73d6906542ea2f8cca2e62f7625ee2e17ae03;p=citadel.git diff --git a/webcit/setup_wizard.c b/webcit/setup_wizard.c index 66deb8c12..bbac2183c 100644 --- a/webcit/setup_wizard.c +++ b/webcit/setup_wizard.c @@ -1,14 +1,9 @@ /* - * $Id$ - * * First-time setup wizard */ #include "webcit.h" - -/* - */ void do_setup_wizard(void) { char *step; @@ -26,29 +21,27 @@ void do_setup_wizard(void) return; } - output_headers(1, 1, 2, 0, 0, 0); + output_headers(1, 1, 1, 0, 0, 0); - wprintf("
\n"); - wprintf(" First time setup"); - wprintf("
\n"); + wc_printf("
\n"); + wc_printf(" First time setup"); + wc_printf("
\n"); - wprintf("
\n"); + wc_printf("
\n"); - wprintf("
" - "
\n" - ); - wprintf("\n", WC->nonce); + wc_printf("\n"); + wc_printf("\n", WC->nonce); - wprintf("
" + wc_printf("
" "This is where the setup wizard will be placed.
\n" "For now, just click Finish.

\n" ); - wprintf("\n"); - wprintf("\n"); + wc_printf("\n"); + wc_printf("\n"); - wprintf("
\n"); + wc_printf("
\n"); wDumpContent(1); }