diff options
author | Jacob <gatelyjm@clarkson.edu> | 2019-12-03 08:58:29 -0500 |
---|---|---|
committer | Tucker Evans <tuckerevans24@gmail.com> | 2019-12-07 15:02:44 -0500 |
commit | 33ff048f5efb30e767780f24424588af562ea400 (patch) | |
tree | e37e66274d43269bc4d606aa325477ffa37aca67 /recipeBuddy/src/app/main-page/main-page.component.html | |
parent | 445816bc374be098156b33e2c7051091f391786f (diff) |
Added new recipe card and main page components. Added new files in each
of these components for html, css, ts, and spec.ts. HTML and CSS files
were updated with code from stackblitz. Apparently this thing also
thinks I changed the app.module.ts file, but I do not think I did.
Diffstat (limited to 'recipeBuddy/src/app/main-page/main-page.component.html')
-rw-r--r-- | recipeBuddy/src/app/main-page/main-page.component.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/recipeBuddy/src/app/main-page/main-page.component.html b/recipeBuddy/src/app/main-page/main-page.component.html new file mode 100644 index 0000000..7a25409 --- /dev/null +++ b/recipeBuddy/src/app/main-page/main-page.component.html @@ -0,0 +1,10 @@ +<h1> + Recipe Buddy +</h1> +<div id="container"> + <div id="left"><button type="button">Add Recipe</button></div> + <div id="right">Search: <input type = "text"> + <input type = "submit"></div> + <div id="center"><button type="button">Shopping Cart</button> </div> +</div> +<hr>
\ No newline at end of file |