Last active
June 1, 2017 15:33
-
-
Save irfaan/69483884784b5244f0fe622c856ec34a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// New Form | |
form.signup_form(method="post" action="/") | |
//- Keyword + Intro | |
.card | |
//- Card Content | |
.card_content | |
//- Card Section | |
.card_section | |
//- Personal Details | |
.grid | |
//- First name | |
.cell | |
.field | |
label(for="first_name") | |
| Your Name | |
input(type="text" name="personal[first_name]" id="first_name") | |
.label_sub | |
| e.g. Lois Lane | |
//- Email Address | |
.cell | |
.field | |
label(for="email") | |
| Email Address | |
input(type="email" name="personal[email]" id="email") | |
.label_sub | |
| e.g. [email protected] | |
//- Business Details | |
.grid | |
.cell | |
.field | |
label(for="instagram") | |
| Business Instagram Handle | |
.hidden_input_wrapper | |
.hidden_input_addition | |
| @ | |
input(type="text" name="business[instagram]" id="instagram") | |
.label_sub | |
| e.g. @gifty.link | |
//- Business type | |
.cell | |
.field | |
label(for="business_type") | |
| Business Type | |
input(type="text" name="business[business_type]" id="business_type") | |
.label_sub | |
| e.g. Upscale Bakery | |
//- Place + Submit | |
.grid | |
//- Place | |
.cell | |
.field | |
label(for="location") | |
| Location (Gifty works worldwide!) | |
input(type="text" name="business[location]" id="location") | |
.label_sub | |
| e.g. Calgary, Alberta, Canada OR Online Only | |
ul.actions | |
li | |
input.button.special(type="submit" value="Express Interest") | |
input(type="hidden" name="action" value="express_interest") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment