diff --git a/TugasBesar2_2017/WebApp/src/main/webapp/css/app.css b/TugasBesar2_2017/WebApp/src/main/webapp/css/app.css index 637531bf1db1265bd18422c074795fb46b627aee..c18363faea1d8fe000264597a6e3d1215868fb30 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 0000000000000000000000000000000000000000..796b59b5ab76dbb11cce5fc4db32a33fe8ce9321 --- /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