Scaffold
/
Forms
Forms
Forms
A pretty standard form to allow users to enter requested data. Most every form element is covered in this sample. Input fields, checkboxes, radio buttons, select dropdowns, etc. alos included is a submit button and a reset, or clear, button that wipes any filled-in information to be wiped.
* Indicates a required field
<fieldset>
<div class="formitem">
<label for="generic" class="visually-hidden">Generic</label>
<input type="text" id="" class="" name="" value="" placeholder="Generic" tabindex="21" required>
</div>
</fieldset>
Select elements are native parts of web forms; however, they will not naturally take links as values. Having the ability to create a dropdown that contains a series of links can be an effective method to minimize the real estate impact on the UI.
<div class="select">
<select name="" class="selectLink">
<option value="null">Select a link</option>
<option value="http://google.com">Go</option>
<option value="http://google.com">Goo</option>
<option value="http://google.com">Goog</option>
<option value="http://google.com">Googl</option>
<option value="http://google.com">Google</option>
</select>
</div>