forked from freeCodeCamp/freeCodeCamp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add progress bar to nonprofit project proposal wizard
- Loading branch information
Michael Q Larson
committed
Mar 25, 2015
1 parent
09b8126
commit d64b5c5
Showing
14 changed files
with
89 additions
and
44 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
extends ../layout | ||
block content | ||
.jumbotron.text-center | ||
h1.hug-top Nonprofit Sign Up | ||
.spacer | ||
h2 Do you represent a nonprofit organization that is registered with your government? | ||
.spacer | ||
.row | ||
.col-xs-6 | ||
a.btn.btn-primary.btn-big.btn-block(href='/nonprofits/how-can-free-code-camp-help-you') Yes | ||
.col-xs-6 | ||
a.btn.btn-warning.btn-big.btn-block(href='/nonprofits/other-solutions') No | ||
h1.hug-top Nonprofit Sign Up | ||
include ../partials/nonprofit-application-progress-bar | ||
h2 Do you represent a nonprofit organization that is registered with your government? | ||
.spacer | ||
.row | ||
.col-xs-6 | ||
a.btn.btn-primary.btn-big.btn-block(href='/nonprofits/how-can-free-code-camp-help-you') Yes | ||
.col-xs-6 | ||
a.btn.btn-warning.btn-big.btn-block(href='/nonprofits/other-solutions') No |
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
extends ../layout | ||
block content | ||
.jumbotron.text-center | ||
h1.hug-top Nonprofit Sign Up | ||
include ../partials/nonprofit-application-progress-bar | ||
h2 Please tell us your email | ||
.spacer | ||
.formgroup | ||
.input-group | ||
input.form-control.big-text-field.field-responsive(type='text', maxlength='140', autofocus='') | ||
span.input-group-btn | ||
button.btn.btn-big.btn-primary.btn-responsive(href='/nonprofits/your-nonprofit-project-application-has-been-submitted') Submit |
Empty file.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
extends ../layout | ||
block content | ||
.jumbotron.text-center | ||
h1.hug-top Nonprofit Sign Up | ||
include ../partials/nonprofit-application-progress-bar | ||
h2 Please tell us your name | ||
.spacer | ||
.formgroup | ||
.input-group | ||
input.form-control.big-text-field.field-responsive(type='text', maxlength='140', autofocus='') | ||
span.input-group-btn | ||
button.btn.btn-big.btn-primary.btn-responsive(href='/nonprofits/tell-us-your-email') Submit |
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
10 changes: 6 additions & 4 deletions
10
views/nonprofits/your-nonprofit-project-application-has-been-submitted.jade
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
.jumbotron.text-center | ||
h1.hug-top Nonprofit Sign Up | ||
.spacer | ||
h2 Thank you for reaching out to us. We’ll get back with you before N of next week. | ||
extends ../layout | ||
block content | ||
.jumbotron.text-center | ||
h1.hug-top Nonprofit Sign Up | ||
include ../partials/nonprofit-application-progress-bar | ||
h2 Thank you for reaching out to us. We’ll get back with you before N of next week. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.spacer | ||
.progress | ||
.progress-bar(role='progressbar', aria-valuenow= (step * 10), aria-valuemin='0', aria-valuemax='100', style="width: #{step * 10}%;") | ||
span.sr-only= step * 10 | ||
| % Complete | ||
h3.gray-text.text-center Step #{step} of 9 |