1
0
Fork 0
forked from goffee/core
core/template/components/form_textarea.html

6 lines
224 B
HTML
Raw Permalink Normal View History

2024-10-08 08:58:42 -04:00
{{define "form_textarea"}}
<div class="input-container">
<label for="{{.ID}}" class="form-label">{{.Label}}</label>
<textarea class="form-control" id="{{.ID}}" name="{{.ID}}" rows="3">{{.Value}}</textarea>
2024-10-08 08:58:42 -04:00
</div>
{{end}}