From 2cc986df9e5ca4e8f57ce9abe87490a027abd2ad Mon Sep 17 00:00:00 2001
From: Irene Edria <ireneedriadr@gmail.com>
Date: Mon, 20 Nov 2017 20:39:11 +0700
Subject: [PATCH] add order_driver.jsp

---
 .../WebApp/src/main/webapp/css/app.css        |  8 +++++
 .../WebApp/src/main/webapp/order_driver.jsp   | 32 +++++++++++++++++++
 2 files changed, 40 insertions(+)
 create mode 100644 TugasBesar2_2017/WebApp/src/main/webapp/order_driver.jsp

diff --git a/TugasBesar2_2017/WebApp/src/main/webapp/css/app.css b/TugasBesar2_2017/WebApp/src/main/webapp/css/app.css
index 637531b..c18363f 100644
--- a/TugasBesar2_2017/WebApp/src/main/webapp/css/app.css
+++ b/TugasBesar2_2017/WebApp/src/main/webapp/css/app.css
@@ -179,6 +179,14 @@ body {
 	font-size: 1.25em;
 }
 
+.find-button {
+	width: 200px;
+	height: 40px;
+	border: 1px solid #00782d;
+	background: #57e500;
+	font-size: 1.25em;
+}
+
 .submit-button:hover {
 	background: #75FF33;
 	font-size: 1.25em;
diff --git a/TugasBesar2_2017/WebApp/src/main/webapp/order_driver.jsp b/TugasBesar2_2017/WebApp/src/main/webapp/order_driver.jsp
new file mode 100644
index 0000000..796b59b
--- /dev/null
+++ b/TugasBesar2_2017/WebApp/src/main/webapp/order_driver.jsp
@@ -0,0 +1,32 @@
+<%@ include file="/component/header.html"%>
+<%@ include file="/component/nav.html"%>
+<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
+<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
+
+<div class="container">
+    <div class="wrapper row">
+        <div>
+            <div class="page-title row txt-center height-fit float-container">
+                <div class="float-left">
+                    <h1 class="inline-block">LOOKING FOR AN ORDER</h1>
+                </div>
+            </div>
+        </div>
+        <div class="order-form">
+            <form action="#" onsubmit="#" method="get">
+                <div class="txt-center">
+                    <h2 class="inline-block">Finding Order....</h2>
+                </div>
+                <div class="txt-center">
+                    <button type="submit" class="form-input find-button">FIND ORDER</button>
+                </div>
+            </form>
+        </div>
+    </div>
+</div>
+
+<%@include file="/component/footer.html" %>
+
+<script>
+    window.onload = toggleActive("nav-order");
+</script>
\ No newline at end of file
-- 
GitLab