diff --git a/login/sign_up.php b/login/sign_up.php
index eb264696d367e00909e7aa33145c8517f2969ec8..9088dc256ca43fc49c1a74bfbc7497ea95105556 100644
--- a/login/sign_up.php
+++ b/login/sign_up.php
@@ -29,14 +29,6 @@
                 header("Location: ../order/order.html");
             }
             mysql_close($conn);
-            /*else {
-                include("login.html");
-                echo "<script>
-                document.getElementById('error_credential').innerHTML = 'Invalid username or password!';
-                </script>";
-                header("Location: login.html");
-            }
-            */
         }
     }
 ?>
diff --git a/order/order.html b/order/order.html
new file mode 100644
index 0000000000000000000000000000000000000000..fd7af2c6fad42de77261b3b05c58fa869e94311e
--- /dev/null
+++ b/order/order.html
@@ -0,0 +1,31 @@
+<!DOCTYPE html>
+<html>
+<head>
+	<title>U Wanna Call Me Beibh?</title>
+	<link rel="stylesheet" type="text/css" href="../css/main.css">
+	<link rel="stylesheet" type="text/css" href="../css/order.css">
+	<script type="text/javascript">
+		function setURL(url) {
+			document.getElementById('content_iframe').src = url;
+		}
+	</script>
+</head>
+<body>
+<<<<<<< HEAD
+	<div class="frame">
+		<p>Order</p>
+	<div class="frame" id="container">
+		<div class="button" id="first">
+			<input type="button" name="select_location" onclick="setURL('select_location.html')" >
+		</div>
+		<div class="button" id="second">
+			<input type="button" name="select_driver" onclick="setURL('select_driver.html')">
+		</div>
+		<div class="button" id="third">
+			<input type="button" name="complete_order" onclick="setURL('complete_order.html')">
+		</div>
+
+		<iframe id="content_iframe" src=""/>
+	</div>
+</body>
+</html>