core/template/components/form_textarea.html
2024-10-08 07:58:42 -05:00

6 lines
No EOL
214 B
HTML

{{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"></textarea>
</div>
{{end}}