You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
503 B
HTML
9 lines
503 B
HTML
<!-- Textarea -->
|
|
<div class="form-group">
|
|
{{#label.length}}<label class="col-sm-6 control-label" for ="{{ id }}">{{ label }}</label>{{/label.length}}
|
|
<div class="{{ inputwidth }}">
|
|
<textarea id="{{ id }}" name="{{ id }}" class="form-control {{#checked_required}} required {{/checked_required}}" rows="5" placeholder="{{ placeholder }}" >{{ textarea }}</textarea>
|
|
{{#helptext.length}} <span class="help-block">{{ helptext }}</span> {{/helptext.length}}
|
|
</div>
|
|
</div>
|