Commit 8632c28f authored by Kirby Ezekiel Santos's avatar Kirby Ezekiel Santos

Added css to orders list

parent e81863ce
...@@ -2,14 +2,17 @@ ...@@ -2,14 +2,17 @@
<html> <html>
<head> <head>
<title>Orders - List</title> <title>Orders - List</title>
<link rel="stylesheet" href="/static/bootstrap.min.css">
<link rel="stylesheet" href="/static/styles.css">
</head> </head>
<body> <body>
<div> <div class="col-lg-10 col-lg-10 mx-auto container">
<h1 id="page_header">Orders - List</h1> <h1 id="page_header">Orders - List</h1>
</div> </div>
<div> <div class="col-lg-10 col-lg-10 mx-auto container">
<table class="table"> <table class="table">
<thead> <thead>
<tr> <tr>
...@@ -22,7 +25,7 @@ ...@@ -22,7 +25,7 @@
<td></td> <td></td>
<td> <td>
<form method="get" action="http://localhost:8000/orders-detail"> <form method="get" action="http://localhost:8000/orders-detail">
<button type="submit" id="button_to_orders_detail">Go to detail</button> <button type="submit" class="btn-sm" id="button_to_orders_detail">Go to detail</button>
</form> </form>
</td> </td>
</tr> </tr>
...@@ -30,15 +33,17 @@ ...@@ -30,15 +33,17 @@
</table> </table>
</div> </div>
<div> <div class="col-lg-10 col-lg-10 mx-auto container">
<div class="col-lg-8 mx-auto button_container">
<form method="get" action="http://localhost:8000/orders-create"> <form method="get" action="http://localhost:8000/orders-create">
<button type="submit" id="button_to_orders_create">Create New Order</button> <button type="submit" class="btn-block btn-outline-info" id="button_to_orders_create">Create New Order</button>
</form> </form>
</div> </div>
<div> <div class="col-lg-8 mx-auto button_container">
<form method="get" action="http://localhost:8000"> <form method="get" action="http://localhost:8000">
<button type="submit" id="back_button">Back to Home</button> <button type="submit" class="btn-block btn-outline-danger" id="back_button">Back to Home</button>
</form> </form>
</div> </div>
</div>
</body> </body>
</html> </html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment