Browse Source

Update the login.php page.

Mark Crane 12 years ago
parent
commit
58995d0ade
1 changed files with 103 additions and 92 deletions
  1. 103 92
      login.php

+ 103 - 92
login.php

@@ -26,106 +26,117 @@
 include "root.php";
 require_once "includes/require.php";
 
-$path = check_str($_GET["path"]);
-$msg = check_str($_GET["msg"]);
-
-include "includes/header.php";
-echo "<br><br>";
-echo "<div align='center'>";
-if (strlen($msg) > 0) {
-	echo "<div align='center'>\n";
-	echo "<table width='50%'>\n";
-	echo "<tr>\n";
-	echo "<th align='left'>Message</th>\n";
-	echo "</tr>\n";
-	echo "<tr>\n";
-	echo "<td class='row_style1'>\n";
-
-	switch ($msg) {
-		case "username required":
-			echo "<strong>Please provide a username.</strong>";
-			break;
-		case "incorrect account information":
-		   echo "<strong>The username or password was incorrect. Please try again.</strong>";
-			break;
-		case "install complete":
-			echo "<br />\n";
-			echo "Installation is complete. <br />";
-			echo "<br /> ";
-			echo  "<strong>Getting Started:</strong><br /> ";
-			echo "<ul><li>There are two levels of admins 1. superadmin 2. admin.<br />";
-			echo "<br />\n";
-			echo "username: <strong>superadmin</strong> <br />password: <strong>fusionpbx</strong> <br />\n";
-			echo "<br />\n";
-			echo "username: <strong>admin</strong> <br />password: <strong>fusionpbx</strong> <br/><br/>\n";
-			echo "</li>\n";
-			echo "<li>\n";
-			echo "The database connection settings have been saved to ".$_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/includes/config.php.<br />\n";
-			echo "</li>\n";
-			echo "</ul>\n";
-			echo "<strong>\n";
-			break;
+//get the http values and set as variables
+	$path = check_str($_GET["path"]);
+	$msg = check_str($_GET["msg"]);
+
+//set a default login url
+	//if (strlen($_SESSION['login']['url']['text']) == 0) {
+	//	$_SESSION['login']['url']['text'] = PROJECT_PATH."/index2.php";
+	//}
+
+//add the header
+	include "includes/header.php";
+
+//show the message
+	if (strlen($msg) > 0) {
+		echo "<br><br>";
+		echo "<div align='center'>\n";
+		echo "<table width='50%'>\n";
+		echo "<tr>\n";
+		echo "<th align='left'>Message</th>\n";
+		echo "</tr>\n";
+		echo "<tr>\n";
+		echo "<td class='row_style1'>\n";
+
+		switch ($msg) {
+			case "username required":
+				echo "<strong>Please provide a username.</strong>";
+				break;
+			case "incorrect account information":
+			   echo "<strong>The username or password was incorrect. Please try again.</strong>";
+				break;
+			case "install complete":
+				echo "<br />\n";
+				echo "Installation is complete. <br />";
+				echo "<br /> ";
+				echo  "<strong>Getting Started:</strong><br /> ";
+				echo "<ul><li>There are two levels of admins 1. superadmin 2. admin.<br />";
+				echo "<br />\n";
+				echo "username: <strong>superadmin</strong> <br />password: <strong>fusionpbx</strong> <br />\n";
+				echo "<br />\n";
+				echo "username: <strong>admin</strong> <br />password: <strong>fusionpbx</strong> <br/><br/>\n";
+				echo "</li>\n";
+				echo "<li>\n";
+				echo "The database connection settings have been saved to ".$_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/includes/config.php.<br />\n";
+				echo "</li>\n";
+				echo "</ul>\n";
+				echo "<strong>\n";
+				break;
+		}
+
+		echo "</td>\n";
+		echo "</tr>\n";
+		echo "</table>\n";
+		echo "</div>\n";
+		echo "<br /><br />\n\n";
 	}
 
+//show the content
+	echo "<br><br>";
+	echo "<form name='login' METHOD=\"POST\" action=\"".PROJECT_PATH."/index2.php."\">\n";
+	echo "<input type='hidden' name='path' value='$path'>\n";
+	echo "<table width='200' border='0'>\n";
+	echo "<tr>\n";
+	echo "<td align='left'>\n";
+	echo "	<strong>UserName:</strong>\n";
+	echo "</td>\n";
+	echo "<td>\n";
+	echo "  <input type=\"text\" style='width: 150px;' class='formfld' name=\"username\">\n";
 	echo "</td>\n";
 	echo "</tr>\n";
-	echo "</table>\n";
-	echo "</div>\n";
-	echo "<br /><br />\n\n";
-}
-
-echo "<form name='login' METHOD=\"POST\" action=\"".PROJECT_PATH."/index2.php\">\n";
-echo "<input type='hidden' name='path' value='$path'>\n";
-echo "<table width='200' border='0'>\n";
-echo "<tr>\n";
-echo "<td align='left'>\n";
-echo "	<strong>UserName:</strong>\n";
-echo "</td>\n";
-echo "<td>\n";
-echo "  <input type=\"text\" style='width: 150px;' class='formfld' name=\"username\">\n";
-echo "</td>\n";
-echo "</tr>\n";
-
-echo "<tr>\n";
-echo "<td align='left'>\n";
-echo "	<strong>Password:</strong>\n";
-echo "</td>\n";
-echo "<td align='left'>\n";
-echo "	<input type=\"password\" style='width: 150px;' class='formfld' name=\"password\">\n";
-echo "</td>\n";
-echo "</tr>\n";
-
-if ($_SESSION['login']['domain_name.visible']['boolean'] == "true") {
+
 	echo "<tr>\n";
 	echo "<td align='left'>\n";
-	echo "	<strong>Domain:</strong>\n";
+	echo "	<strong>Password:</strong>\n";
 	echo "</td>\n";
-	echo "<td>\n";
-	if (count($_SESSION['login']['domain_name']) > 0) {
-		echo "    <select style='width: 150px;' class='formfld' name='domain_name'>\n";
-		echo "    <option value=''></option>\n";
-		foreach ($_SESSION['login']['domain_name'] as &$row) {
-			echo "    <option value='$row'>$row</option>\n";
+	echo "<td align='left'>\n";
+	echo "	<input type=\"password\" style='width: 150px;' class='formfld' name=\"password\">\n";
+	echo "</td>\n";
+	echo "</tr>\n";
+
+	if ($_SESSION['login']['domain_name.visible']['boolean'] == "true") {
+		echo "<tr>\n";
+		echo "<td align='left'>\n";
+		echo "	<strong>Domain:</strong>\n";
+		echo "</td>\n";
+		echo "<td>\n";
+		if (count($_SESSION['login']['domain_name']) > 0) {
+			echo "    <select style='width: 150px;' class='formfld' name='domain_name'>\n";
+			echo "    <option value=''></option>\n";
+			foreach ($_SESSION['login']['domain_name'] as &$row) {
+				echo "    <option value='$row'>$row</option>\n";
+			}
+			echo "    </select>\n";
 		}
-		echo "    </select>\n";
-	}
-	else {
-		echo "  <input type=\"text\" style='width: 150px;' class='formfld' name=\"domain_name\">\n";
+		else {
+			echo "  <input type=\"text\" style='width: 150px;' class='formfld' name=\"domain_name\">\n";
+		}
+		echo "</td>\n";
+		echo "</tr>\n";
 	}
+
+	echo "<tr>\n";
+	echo "<td>\n";
+	echo "</td>\n";
+	echo "<td align=\"right\">\n";
+	echo "  <input type=\"submit\" class='btn' value=\"Login\">\n";
 	echo "</td>\n";
 	echo "</tr>\n";
-}
-
-echo "<tr>\n";
-echo "<td>\n";
-echo "</td>\n";
-echo "<td align=\"right\">\n";
-echo "  <input type=\"submit\" class='btn' value=\"Login\">\n";
-echo "</td>\n";
-echo "</tr>\n";
-echo "</table>\n";
-echo "</form>";
-echo "</div>";
-
-include "includes/footer.php";
-?>
+	echo "</table>\n";
+	echo "</form>";
+	echo "</div>";
+
+//add the footer
+	include "includes/footer.php";
+?>