From: Ian Jackson Date: Tue, 3 Nov 2015 18:59:27 +0000 (+0000) Subject: Cleanup: Remove an old piece of junk X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=cgi-auth-flexible.git;a=commitdiff_plain;h=HEAD;hp=dadb6b434c829d9ec2747cb7d35c49afd799dcbb Cleanup: Remove an old piece of junk Signed-off-by: Ian Jackson --- diff --git a/junk b/junk deleted file mode 100644 index ebdec06..0000000 --- a/junk +++ /dev/null @@ -1,30 +0,0 @@ - if ( form submission is login request ) { - check login details, if wrong print error and quit - $authreq->record_login(...username...); - } - if ( !$authreq->check() ) { - display login form, quit - - - if ( form submission is login request ) { - check login details, if wrong print error and quit - $authreq->record_login(...username...); - } - if ( form submission is logout request ) { - die unless $authreq->mutate(); - my $logged_out_user = $authreq->logout(); - if (!defined $logged_out_user) { - print "you are not logged in" error and quit - } else { - print "goodbye $username you are now logged out" and quit - } - } - if ( !$authreq->check() ) { - display login form, quit - - -advantages of cookie - - user can sort of log out by clearing cookies - - sophisticated applications can have get-requests - -