<div class="dk-input-group">
<label
for="errorInput"
class="dk-input-label">
Field with error
</label>
<input
type="text"
id="errorInput"
class="dk-input dk-input--error"
/>
<small class="dk-error-message">
User Name or Password is incorrect
</small>
</div>
<br class="" />
<div class="dk-input-group">
<input
type="text"
id="errorInput"
class="dk-input dk-input--error"
/>
<span class="dk-input__error-feedback">
User Name or Password is incorrect
</span>
</div>
Helper Text
<div class="dk-input-group">
<label
for="labelInput"
class="dk-input-label">
Input Label
</label>
<small class="dk-input-helper">
This is an example of some
instructional text
</small>
<input
type="text"
id="labelInput"
class="dk-input"
/>
</div>
<div class="dk-input-group">
<label
for="labelInput"
class="dk-input-label">
Input Label
</label>
<textarea
id="w3review"
name="w3review"
placeholder="this is a placeholder"
rows="8"
cols="50"
class="dk-input">
Lorem ipsum dolor sit amet,
consectetur adipisicing elit. Ipsa at
esse cupiditate hic doloremque,
exercitationem sunt veritatis rerum
tempora adipisci vel nesciunt
architecto asperiores sed neque minus
laboriosam fuga molestias?
</textarea>
</div>
With Buttons
<div class="dk-input-group">
<label
for="labelInput"
class="dk-input-label">
Input field with red button and text
</label>
<div class="dk-input__text-button">
<input
placeholder="Placeholder Text"
class="dk-input"
/>
<button class="dk-input-button">
Submit
</button>
</div>
</div>
<div class="dk-input-group">
<label
for="labelInput"
class="dk-input-label">
Input field with add to cart button
</label>
<div class="dk-input__cart-button">
<input class="dk-input" />
<button class="dk-input-button">
Add To Cart
</button>
</div>
</div>