Input
Inputs allow users to enter information and they can be of different types - text, number, password, email, submit, etc.
Elixir offers the following types of input components - default input, input with validations for success, error, warning, default textbox, and inline inputs.
Default Inputs,
Inline Inputs,
Inputs with success validations,
Inputs with warning validations,
Inputs with error validations, and
Textbox.
Default textbox
This input component allows users to enter multiple lines of text.
To generate a textbox use the base class input-group along with the supporting classes textbox-default and textbox-group.
Copy the code below to use a default textbox.
<div class="input-group textbox-default textbox-group m-1">
<label for="input-comments" class="text-label">Comments</label>
<textarea id="input-coments" class="input-textbox p-0-75" rows="10" cols="30" placeholder="Enter your comments..."></textarea>
<span class="text-message"></span>
</div>