-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1143 from Vizzuality/feat/front/MARXAN-1311-regis…
…tration-form-extension feat(front): registration form extension + picky details [MARXAN-1394][MARXAN-1396][MARXAN-1311]
- Loading branch information
Showing
7 changed files
with
196 additions
and
12 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
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,52 @@ | ||
export const BACKGROUND_OPTIONS = [ | ||
{ | ||
label: 'Academic research/science', | ||
value: 'academic_research', | ||
}, | ||
{ | ||
label: 'Applied conservation planning', | ||
value: 'conservation_planning', | ||
}, | ||
]; | ||
|
||
export const ACADEMIC_LEVEL_OPTIONS = [ | ||
{ | ||
label: 'Trainee', | ||
value: 'trainee', | ||
}, | ||
{ | ||
label: 'Student', | ||
value: 'student', | ||
}, | ||
{ | ||
label: 'PhD/Post-doctoral researcher', | ||
value: 'phd', | ||
}, | ||
{ | ||
label: 'Faculty', | ||
value: 'faculty', | ||
}, | ||
]; | ||
|
||
export const APPLIED_LEVEL_OPTIONS = [ | ||
{ | ||
label: 'Trainee', | ||
value: 'trainee', | ||
}, | ||
{ | ||
label: 'NGO', | ||
value: 'ngo', | ||
}, | ||
{ | ||
label: 'Private sector', | ||
value: 'private_sector', | ||
}, | ||
{ | ||
label: 'Government', | ||
value: 'government', | ||
}, | ||
{ | ||
label: 'Intergovernmental', | ||
value: 'intergovernmental', | ||
}, | ||
]; |