From 4ebf4a47bf31e5cac098981683688683bda925e2 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 3 Nov 2015 18:59:27 +0000 Subject: [PATCH 1/1] Cleanup: Remove an old piece of junk Signed-off-by: Ian Jackson --- junk | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 junk 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 - - -- 2.30.2