{% extends 'layouts/base_background.html' %} {% load static %} {% block title %} Soft UI Design System by Creative Tim {% endblock title %} {% block body %} class="inputs-sections" {% endblock body %} {% block header %} {% include 'includes/navigation_light.html' %} {% endblock header %} {% block content %}

Inputs

Input simple

Copy
<section class="py-7">
  <div class="container">
    <div class="row justify-space-between py-2">
      <div class="col-lg-4 mx-auto">
        <input type="text" placeholder="Regular" class="form-control" >
      </div>
    </div>
  </div>
</section>

Input with icon

Screenshot
input-2

Input with icon and label

Screenshot
input-3

Input success

Screenshot
input-4

Input error

Screenshot
input-5

Input disabled

Screenshot
input-6
{% endblock content %} {% block footer %} {% include 'includes/footer_fullscreen.html' %} {% endblock footer %} {% block javascripts %} {% include 'includes/scripts_sections.html' %} {% endblock javascripts %}