Input

Inputs can be used for user interaction with the website. Will take information from the user, and then save the data to the server.

Below is an example for input with validation.

Label
Label
Label
    
           <div class="input">
              <input type="text" class="input-error input-style" />
              <div class="error input-label">Label</div>
            </div>

            <div class="input">
              <input type="text" class="input-warning input-style" />
              <div class="warning input-label">Label</div>
            </div>

            <div class="input">
              <input type="text" class="input-success input-style" />
              <div class="success input-label">Label</div>
            </div>
    
   

Below is an example for textbox.

    
           <textarea class="textarea" type="text" required></textarea>