diff options
Diffstat (limited to 'view/html/recipe-ingredient.html')
-rw-r--r-- | view/html/recipe-ingredient.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/html/recipe-ingredient.html b/view/html/recipe-ingredient.html index e925737..931ffcf 100644 --- a/view/html/recipe-ingredient.html +++ b/view/html/recipe-ingredient.html @@ -1,6 +1,6 @@ {{define "recipe-ingredient"}} <p> <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}}"> + <input class="type" type="text" placeholder="Type" value="{{.Type}}" required> <button type="button" onclick="parentNode.remove();">remove ingredient</button> </p>{{end}} |