Commit 3c5ec9e0 authored by Kirby Ezekiel Santos's avatar Kirby Ezekiel Santos

Added css to recipes create

parent c893157e
...@@ -2,36 +2,39 @@ ...@@ -2,36 +2,39 @@
<html> <html>
<head> <head>
<title>Recipes - Create</title> <title>Recipes - 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">Recipes - Create</h1> <h1 id="page_header">Recipes - 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 recipe</label> <label>New recipe</label>
<input type="text" placeholder="Insert name of the recipe"> <input type="text" class="form-control" placeholder="Insert name of the recipe">
</div> </div>
<div> <div class="form-group">
<label>Recipe field</label> <label>Recipe field</label>
<input type="text" placeholder="Insert field"> <input type="text" class="form-control" placeholder="Insert field">
</div> </div>
<div> <div class="form-group">
<label>Recipe field</label> <label>Recipe field</label>
<input type="text" placeholder="Insert field"> <input type="text" class="form-control" placeholder="Insert field">
</div> </div>
<div> <div>
<button type="submit">Finish Creating Recipe</button> <button type="submit" class="btn-block btn-outline-success">Finish Creating Recipe</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/recipes-list"> <form method="get" action="http://localhost:8000/recipes-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