]> code.citadel.org Git - citadel.git/blobdiff - ctdlphp/do_login.php
* Firmed up the login/logout process
[citadel.git] / ctdlphp / do_login.php
index b60eebc4ec4fe1c6280d6364b49610a3de3c6023..4d0751d000a6ff7a6926e436718eb2f3632d5ab5 100644 (file)
@@ -1,29 +1,41 @@
 <?PHP
-       include "ctdlheader.php";
-       bbs_page_header();
-
-
-       if ($_POST["action"] == "Login") {
-               list($retval, $msg) =
-                       login_existing_user($_POST["user"], $_POST["pass"]);
-                       echo $msg, "<BR>\n";
-       }
-       if ($_POST["action"] == "New User") {
-               list($retval, $msg) =
-                       create_new_user($_POST["user"], $_POST["pass"]);
-                       echo $msg, "<BR>\n";
-       }
-       else {
-               echo "uuuuhhhhhhhh....<BR>\n";
-       }
 
-?>
+// $Id$
+//
+// The login form displayed in login.php submits to this page.
+// 
+// Copyright (c) 2003 by Art Cancro <ajc@uncensored.citadel.org>
+// This program is released under the terms of the GNU General Public License.
+//
 
+include "ctdlheader.php";
 
-<a href="page2.php">Page Two</a><BR>
-<a href="page3.php">Page Three</a><BR>
+bbs_page_header();
+
+if ($_POST["action"] == "Login") {
+       list($retval, $msg) =
+               login_existing_user($_POST["user"], $_POST["pass"]);
+}
+else if ($_POST["action"] == "New User") {
+       list($retval, $msg) =
+               create_new_user($_POST["user"], $_POST["pass"]);
+}
+else {
+       echo "uuuuhhhhhhhhh....<BR>\n" ;
+}
+
+
+if ($retval == FALSE) {
+       echo "<DIV ALIGN=CENTER>", $msg, "<BR><BR>\n" ;
+       echo "<a href=\"login.php\">Try again</A><BR>\n" ;
+       echo "<a href=\"logout.php\">Log out</A><BR>\n" ;
+}
+else {
+       echo "Hi there.  You're online.<BR>\n" ;
+       echo "<a href=\"page2.php\">Page Two</a><BR>\n" ;
+}
+
+bbs_page_footer();
 
-<?PHP
-       bbs_page_footer();
 ?>