diff options
author | xengineering <me@xengineering.eu> | 2024-03-06 20:54:20 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-03-06 21:42:50 +0100 |
commit | e3b50645b27698c8676b1ffcd4c73c545d14d94d (patch) | |
tree | d5e1850c3535b2682f5721754ccb6b08a24b1fa6 /view | |
parent | 06293b48bb1288348e36dceb779cc06f31b0ba8d (diff) | |
download | ceres-e3b50645b27698c8676b1ffcd4c73c545d14d94d.tar ceres-e3b50645b27698c8676b1ffcd4c73c545d14d94d.tar.zst ceres-e3b50645b27698c8676b1ffcd4c73c545d14d94d.zip |
view: Use textarea for recipe notes
They are intended to use multiple lines. This is easier to edit in a
textarea element rather than in an input element.
Diffstat (limited to 'view')
-rw-r--r-- | view/html/recipe-edit.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/html/recipe-edit.html b/view/html/recipe-edit.html index 125d876..7dda7ff 100644 --- a/view/html/recipe-edit.html +++ b/view/html/recipe-edit.html @@ -28,7 +28,7 @@ <p> <label>Notes</label> - <input type="text" name="notes" value="{{.Notes}}"> + <textarea name="notes" rows="4" cols="50">{{.Notes}}</textarea> </p> <button type="submit">save</button> |