diff options
author | Jacob <gatelyjm@clarkson.edu> | 2019-12-09 07:37:40 -0500 |
---|---|---|
committer | Jacob <gatelyjm@clarkson.edu> | 2019-12-09 07:37:40 -0500 |
commit | 1b23ba09800009f484b9ab6a49a5626b0baaf504 (patch) | |
tree | ad59b70ef89202b71181382a3d40a468705b535c /recipeBuddy/src/app/app.component.html | |
parent | c6afa531481b664950406df6cea17794942d8028 (diff) |
Initial commit for main page work in progress. Trying to figure out
infinite scroll
Diffstat (limited to 'recipeBuddy/src/app/app.component.html')
-rw-r--r-- | recipeBuddy/src/app/app.component.html | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/recipeBuddy/src/app/app.component.html b/recipeBuddy/src/app/app.component.html index 014c6b0..18b63ba 100644 --- a/recipeBuddy/src/app/app.component.html +++ b/recipeBuddy/src/app/app.component.html @@ -1,2 +1,20 @@ -<h1>{{title}}</h1> +<h1> + Recipe Buddy +</h1> +<div id="container"> + <div id="left"> + <div id="add"> + <input (click)="addPage()" type="image" src="https://image.flaticon.com/icons/png/512/61/61183.png" + alt="add" width="60" height="60"> + </div> + </div> + <div id="right">Search: <input type = "text"> + <input (click)="submitSearch()" type = "submit"></div> + <div id="center"> + <div id="cart"> + <input (click)="shoppingCart()" type="image" src="https://image.flaticon.com/icons/png/512/126/126083.png" alt="cart" width="60" height ="60"> + </div> + </div> +</div> +<hr> <router-outlet></router-outlet> |