Get started
Components
<div class="input-container">
<p class="input-title">Username*</p>
<input class="input-field" type="text">
</div>
Username*
<div class="input-container">
<p class="input-title error">Username*</p>
<input class="input-field" type="text">
<p class="input-title error">Wrong username try again*</p>
</div>
Username*
Wrong username try again
<div class="input-container">
<p class="input-title">Password*</p>
<input type="password" class="input-field" type="text" />
</div>
Password*
<div class="input-container">
<p>Select your gender</p>
<div class="gender flex_row">
<input type="radio" name="gender" value="male" /> Male
<input type="radio" name="gender" value="Female" /> Female
<input type="radio" name="gender" value="Others" /> Other
</div>
</div>