-
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.
Merge pull request #185 from GSG-G8/183-complete-availability
update the availability form Page
- Loading branch information
Showing
6 changed files
with
209 additions
and
10 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
66 changes: 66 additions & 0 deletions
66
client/src/components/application/NonlinearStepper/questions.js
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,66 @@ | ||
const GazaAreas = [ | ||
'North of Gaza Strip', | ||
'Gaza City', | ||
'Middle Area of Gaza', | ||
'Khan Younis', | ||
'Rafah', | ||
]; | ||
const GazaUniversities = [ | ||
"I didn't go to university", | ||
'Islamic University of Gaza', | ||
'Al Azhar University', | ||
'Palestine University', | ||
'UCAS', | ||
'Al Quds Open University', | ||
'University College of Science and Technology', | ||
'Al Aqsa University', | ||
'Gaza University', | ||
'I went to university outside of Gaza', | ||
]; | ||
|
||
const KhalilUniversities = [ | ||
"I didn't go to university", | ||
'Palestine Polytechnic University (PPU)', | ||
'Hebron University', | ||
'Bethlehem University', | ||
'Birzeit University', | ||
'Al Najah University', | ||
'Arab American University', | ||
'Al Quds Open University', | ||
'Al Quds University', | ||
'Palestine Technical University - Kadoori', | ||
'IT College - Vocational Center', | ||
'University outside of Palestine', | ||
'Other', | ||
]; | ||
const advertisement = [ | ||
'Gaza Sky Geeks Social Media (Facebook, Twitter, Instagram)', | ||
'Friend or family member who is a Code Academy graduate', | ||
'I came to a GSG workshop or event (such as “Coding for Everyone”)', | ||
'Online / browsing the web', | ||
'Jobs.ps', | ||
'Other', | ||
]; | ||
const codeExperience = [ | ||
'No Experience', | ||
'Some experience as hobby', | ||
'A lot of experience as a hobby', | ||
'I have a university degree in Computer Science or another related field', | ||
'I have had a paid job as a developer.', | ||
]; | ||
const primaryMotivationForm = [ | ||
'I want to gain employment/earn income as a developer.', | ||
"I want to learn something new - I don't know if I want a coding career", | ||
'I want to be part of the GSG and Code Academy community', | ||
]; | ||
const KhalilAreas = ['Old Town', 'New Town']; | ||
|
||
export default { | ||
GazaAreas, | ||
GazaUniversities, | ||
KhalilUniversities, | ||
advertisement, | ||
codeExperience, | ||
primaryMotivationForm, | ||
KhalilAreas, | ||
}; |
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