-
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.
connect all routes together and adds remaining routes
relates #34
- Loading branch information
1 parent
69def89
commit 3c276cd
Showing
9 changed files
with
68 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -153,5 +153,5 @@ aboutYou model = | |
] | ||
] | ||
] | ||
, grayButton ( "Next", "nextRole" ) | ||
, grayButton ( "Next", "next-role" ) | ||
] |
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,19 @@ | ||
module Routes.ChallengingProject exposing (..) | ||
|
||
import Components.GrayButton exposing (..) | ||
import Components.Questions exposing (..) | ||
import Html exposing (..) | ||
import Html.Attributes exposing (..) | ||
import Html.Events exposing (..) | ||
import Types exposing (..) | ||
|
||
|
||
challengingProject : Model -> Html Msg | ||
challengingProject model = | ||
div [] | ||
[ questionTemplate model | ||
( "What was the most challenging project you have worked on, and how did you contribute?" | ||
, "personal-intro" | ||
) | ||
, grayButton ( "Submit", "thank-you" ) | ||
] |
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,22 @@ | ||
module Routes.PersonalIntro exposing (..) | ||
|
||
import Components.GrayButton exposing (..) | ||
import Components.Questions exposing (..) | ||
import Html exposing (..) | ||
import Html.Attributes exposing (..) | ||
import Html.Events exposing (..) | ||
import Types exposing (..) | ||
|
||
|
||
personalIntro : Model -> Html Msg | ||
personalIntro model = | ||
div [] | ||
[ questionTemplate model | ||
( "Please give us a small personal intro (60 second overview, hobbies, interests, what you enjoy outside of work)" | ||
, "next-role" | ||
) | ||
, grayButton ( "Next Question", "challenging-project" ) | ||
, a [ href "#thank-you" ] | ||
[ div [ class "tc mb5" ] [ text "No thanks, I just want to send the form" ] | ||
] | ||
] |
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