Commit 79fc2b56 authored by Kirby Ezekiel Santos's avatar Kirby Ezekiel Santos

Added css to ingredients create

parent e5331e53
...@@ -2,32 +2,35 @@ ...@@ -2,32 +2,35 @@
<html> <html>
<head> <head>
<title>Ingredients - Create</title> <title>Ingredients - Create</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">Ingredients - Create</h1> <h1 id="page_header">Ingredients - Create</h1>
</div> </div>
<div> <div class="col-lg-10 col-lg-10 mx-auto container">
<form> <form>
<div> <div class="form-group">
<label>New ingredient</label> <label>New ingredient</label>
<input type="text" placeholder="Insert name of the ingredient"> <input type="text" class="form-control" placeholder="Insert name of the ingredient">
</div> </div>
<div> <div class="form-group">
<label>New ingredient quantity</label> <label>New ingredient quantity</label>
<input type="text" placeholder="Kindly insert an integer"> <input type="text" class="form-control" placeholder="Kindly insert an integer">
</div> </div>
<div> <div>
<button type="submit">Finish Creating Ingredient</button> <button type="submit" class="btn-block btn-outline-success">Finish Creating Ingredient</button>
</div> </div>
</form> </form>
</div> </div>
<div> <div class="col-lg-10 col-lg-10 mx-auto container">
<form method="get" action="http://localhost:8000/ingredients-list"> <form method="get" action="http://localhost:8000/ingredients-list">
<button type="submit" id="back_button">Back to List</button> <button type="submit" class="btn-block btn-outline-danger" id="back_button">Back to List</button>
</form> </form>
</div> </div>
</body> </body>
......
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