Skip to content

Instantly share code, notes, and snippets.

@daspecster
Last active August 29, 2015 13:57
Show Gist options
  • Save daspecster/9611228 to your computer and use it in GitHub Desktop.
Save daspecster/9611228 to your computer and use it in GitHub Desktop.
Ziptastic Form Example
<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