X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fauth.c;h=0b01a16b8ebea184aa3fec6277dbd84e832abab4;hb=6f1846672284d64b74a10937813320271293ad66;hp=db5ed181c1d78b11f65c6be3a82e788da39796d9;hpb=d3865a3e08f6e62ded13210dccb4da0d26eee532;p=citadel.git diff --git a/webcit/auth.c b/webcit/auth.c index db5ed181c..0b01a16b8 100644 --- a/webcit/auth.c +++ b/webcit/auth.c @@ -97,7 +97,7 @@ void display_login(char *mesg) svput("OFFER_OPENID_LOGIN", WCS_STRING, ""); } - do_template("login"); + do_template("login", NULL); wDumpContent(2); } @@ -153,7 +153,7 @@ void display_openid_login(char *mesg) "Log in using a user name and password" ); - do_template("openid_login"); + do_template("openid_login", NULL); wDumpContent(2); } @@ -188,7 +188,7 @@ void display_openid_name_request(char *claimed_id, char *username) { svprintf(HKEY("BOXTITLE"), WCS_STRING, _("%s - powered by Citadel"), serv_info.serv_humannode); - do_template("openid_manual_create"); + do_template("openid_manual_create", NULL); wDumpContent(2); } @@ -795,7 +795,7 @@ void display_changepw(void) output_headers(1, 1, 1, 0, 0, 0); svput("BOXTITLE", WCS_STRING, _("Change your password")); - do_template("beginbox"); + do_template("beginbox", NULL); if (!IsEmptyStr(WC->ImportantMessage)) { wprintf("" @@ -829,7 +829,7 @@ void display_changepw(void) wprintf("\n"); wprintf("\n"); - do_template("endbox"); + do_template("endbox", NULL); wDumpContent(1); }