Files
long2ice 50ebd3d864 bug fix
2021-05-14 22:38:01 +08:00

12 lines
415 B
HTML

<div class="form-group mb-3">
<label class="form-label">{{ label }}</label>
<textarea {% if not null %}required{% endif %} class="form-control" name="{{ name }}"
placeholder="{{ placeholder }}"
{% if disabled %}disabled{% endif %}>{{ value }}</textarea>
{% if help_text %}
<small class="form-hint">
{{ help_text }}
</small>
{% endif %}
</div>