Last active
August 29, 2015 13:57
-
-
Save daspecster/9611228 to your computer and use it in GitHub Desktop.
Ziptastic Form Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form id="theform" class="pure-form pure-form-stacked"> | |
<fieldset> | |
<label for="name"> | |
Name: | |
<input type="text" id="name" placeholder="Full Name"/> | |
</label> | |
<label for="address1"> | |
Address: | |
<input type="text" id="address" placeholder="House Number, Street" /> | |
</label> | |
<label for="zip"> | |
Postal Code: | |
<input type="text" id="zip" placeholder="Postal/Zip code" /> | |
</label> | |
<label for="city"> | |
City: | |
<input type="text" id="city" placeholder="City" /> | |
</label> | |
<label for="state"> | |
State: | |
<input type="text" id="state" placeholder="State" /> | |
</label> | |
<label for="country"> | |
Country: | |
<input type="text" id="country" placeholder="Country" /> | |
</label> | |
<input type="submit" disabled="disabled" class="pure-button pure-button-primary" /> | |
<input type="reset" class="pure-button pure-button-primary" /> | |
</fieldset> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment