Hello John Doe
My AccountLogout

Native Forms

There is nothing wrong with how form elements look by default. Infact, they are functional, simple and robust. Exactly what we need.


Personal Information
Company Information
  •        
  •        

Usage

You already know how to use this component because it changes nothing! All it does is clean up the elements a bit and give it a nice shine. But here's an example anyways:

<fieldset>
	<legend>Personal Information</legend>
	<form>
		<ul>
			<li>
				<label>First Name</label>
				<input type="text" placeholder="Your first name here">
			</li>
			<li>
				<label>Last Name</label>
				<input type="text">
			</li>
			<li>
				<label>Email Address</label>
				<input type="email" required>
			</li>
			<li>
				<label>Address</label>
				<textarea></textarea>
			</li>
			<li>
				<input type="submit">
			</li>
		</ul>
	</form>
</fieldset>



Example of all form elements