diff options
Diffstat (limited to 'view/html/recipe-ingredient.html')
-rw-r--r-- | view/html/recipe-ingredient.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/view/html/recipe-ingredient.html b/view/html/recipe-ingredient.html index 9ea90be..e925737 100644 --- a/view/html/recipe-ingredient.html +++ b/view/html/recipe-ingredient.html @@ -1,6 +1,6 @@ {{define "recipe-ingredient"}} <p> - <input type="text" placeholder="Amount" value="{{.Amount}}"> - <input type="text" placeholder="Unit" value="{{.Unit}}"> - <input type="text" placeholder="Type" value="{{.Type}}"> + <input class="amount" type="text" placeholder="Amount" value="{{.Amount}}"> + <input class="unit" type="text" placeholder="Unit" value="{{.Unit}}"> + <input class="type" type="text" placeholder="Type" value="{{.Type}}"> <button type="button" onclick="parentNode.remove();">remove ingredient</button> </p>{{end}} |