summaryrefslogtreecommitdiffstats
path: root/relogin.cgi
diff options
context:
space:
mode:
authorgerv%gerv.net <>2002-02-24 17:54:14 +0100
committergerv%gerv.net <>2002-02-24 17:54:14 +0100
commit9a48b40e7af06e864b0309c3d1a105274cb57e43 (patch)
treed653d9a0160de42e9f6e186268fd525ebf79f64c /relogin.cgi
parentde0443553cc3b55be7ccfa3c2325c502bf1dd69f (diff)
downloadbugzilla-9a48b40e7af06e864b0309c3d1a105274cb57e43.tar.gz
bugzilla-9a48b40e7af06e864b0309c3d1a105274cb57e43.tar.xz
Bug 126791 - templatise relogin.cgi
Diffstat (limited to 'relogin.cgi')
-rwxr-xr-xrelogin.cgi25
1 files changed, 14 insertions, 11 deletions
diff --git a/relogin.cgi b/relogin.cgi
index a0ec4f105..03670158d 100755
--- a/relogin.cgi
+++ b/relogin.cgi
@@ -19,11 +19,13 @@
# Rights Reserved.
#
# Contributor(s): Terry Weissman <terry@mozilla.org>
+# Gervase Markham <gerv@gerv.net>
use diagnostics;
use strict;
use vars %::COOKIE;
+use vars qw($template $vars);
use lib qw(.);
@@ -51,23 +53,24 @@ if ($::userid) {
my $cookiepath = Param("cookiepath");
print "Set-Cookie: Bugzilla_login= ; path=$cookiepath; expires=Sun, 30-Jun-80 00:00:00 GMT
Set-Cookie: Bugzilla_logincookie= ; path=$cookiepath; expires=Sun, 30-Jun-80 00:00:00 GMT
-Content-type: text/html
-
";
# delete the cookie before dumping the header so that it shows the user
# as logged out if %commandmenu% is in the header
delete $::COOKIE{"Bugzilla_login"};
-PutHeader ("Relogin");
-
-print "<B>Your login has been forgotten</B>.</P>
-The cookie that was remembering your login is now gone. The next time you
-do an action that requires a login, you will be prompted for it.
-<p>
-";
-
-PutFooter();
+ $vars->{'title'} = "Logged Out";
+ $vars->{'message'} = "<b>Your login has been forgotten</b>.
+ The cookie that was remembering your login is
+ now gone. You will be prompted for a login the
+ next time it is required.";
+ $vars->{'url'} = "query.cgi?GoAheadAndLogIn=1";
+ $vars->{'link'} = "Log in again here";
+
+ print "Content-Type: text/html\n\n";
+ $template->process("global/message.html.tmpl", $vars)
+ || DisplayError("Template process failed: " . $template->error())
+ && exit;
exit;