Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
coreschema / templates / bootstrap3 / inputs / input.html
Size: Mime:
<div class="form-group">
    <label for="{{ key }}" class="control-label">
        {{ schema.title or key }}
        {% if required %}
            <span class="text-danger">*</span>
        {% endif %}
    </label>
    <input name="{{ key }}" class="form-control" {{ get_attrs(schema) }} {% if required %}required{% endif %}>
    {% if schema.description %}
        <p class="help-block">{{ schema.description }}</p>
    {% endif %}
</div>