Custom UI

Form - Input

Texto (con estados)

html
<input type="text" maxlength="10" required />
<input type="text" maxlength="10" required class="is-valid" />
<input type="text" maxlength="10" required class="is-invalid" />
<input type="text" maxlength="10" required disabled />

Varios tipos

html
<input type="number" min="0" max="100" step="0.01" placeholder="9.99" />
<input type="tel" maxlength="15" placeholder="+34950123456" />
<input type="date" min="1990-01-01" max="9999-12-31" />
<input type="time" />