G-Loot DS — text input disabled
by Augustin Hiebel
HTML
<!-- With class name -->
<div className="form-group is-disabled">
<label htmlFor="country">Country</label>
<input type="text" name="country" id="country" />
</div>
<!-- With attribute -->
<div disabled className="form-group is-disabled">
<label htmlFor="area">Area</label>
<input type="text" name="area" id="area" disabled />
</div>
<!-- Textarea -->
<div className="form-group is-disabled">
<label htmlFor="bio">Bio</label>
<textarea id="bio" name="bio" rows="4" placeholder=""></textarea>
</div>