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.
information-system/js/bootstrap-form-builder/js/templates/snippet/appendedcheckbox.html

14 lines
620 B
HTML

<!-- Appended checkbox -->
<div class="form-group">
<label class="col-sm-6 control-label" for="{{ id }}">{{ label }}</label>
<div class="{{ inputwidth }}">
<div class="input-group">
<input id="{{ id }}" name="{{ id }}" class="form-control {{ inputsize }} {{#checked_required}} required {{/checked_required}}" type="text" placeholder="{{ placeholder }}" />
<span class="input-group-addon">
<input type="checkbox" {{#checked}}checked="checked"{{/checked}} />
</span>
</div>
{{#helptext.length}} <span class="help-block">{{ helptext }}</span> {{/helptext.length}}
</div>
</div>