|
|
@@ -7,19 +7,19 @@ const allSteps = {
|
|
7
|
7
|
name: 'name',
|
|
8
|
8
|
email: 'email',
|
|
9
|
9
|
password: 'password',
|
|
10
|
|
- // pronouns: 'pronouns',
|
|
11
|
|
- // seeking: 'seeking',
|
|
12
|
|
- // urgency: 'urgency',
|
|
13
|
|
- // experience: 'experience',
|
|
14
|
|
- // roles: 'role',
|
|
15
|
|
- // duration: 'duration',
|
|
16
|
|
- // presence: 'presence',
|
|
17
|
|
- // language: 'language',
|
|
18
|
10
|
zipcode: 'zipcode',
|
|
19
|
|
- // distance: 'distance',
|
|
20
|
|
- // blurb: 'blurb',
|
|
21
|
|
- // image: 'image',
|
|
|
11
|
+ seeking: 'seeking',
|
|
|
12
|
+ urgency: 'urgency',
|
|
|
13
|
+ presence: 'presence',
|
|
|
14
|
+ duration: 'duration',
|
|
|
15
|
+ pronouns: 'pronouns',
|
|
|
16
|
+ language: 'language',
|
|
|
17
|
+ image: 'image',
|
|
|
18
|
+ distance: 'distance',
|
|
|
19
|
+ blurb: 'blurb',
|
|
22
|
20
|
aspects: 'aspects',
|
|
|
21
|
+ // experience: 'experience',
|
|
|
22
|
+ // roles: 'role',
|
|
23
|
23
|
},
|
|
24
|
24
|
}
|
|
25
|
25
|
|
|
|
@@ -81,23 +81,33 @@ possible.usa = {
|
|
81
|
81
|
blurb: [],
|
|
82
|
82
|
}
|
|
83
|
83
|
|
|
|
84
|
+// TODO: set up a separate object of similar prompts based off of
|
|
|
85
|
+// employer/employee, right now is generic
|
|
84
|
86
|
const promptOverrides = {
|
|
85
|
87
|
name: "What's your name?:",
|
|
86
|
88
|
email: "In order for you to reach out to others on siimee, we'll need an email address. Where can we best reach you?:",
|
|
87
|
89
|
password:
|
|
88
|
90
|
"Next we'll need you to establish a super secret password. Your password should be at least 10 characters long and have at least 2 special characters. Please enter your:",
|
|
89
|
91
|
zipcode:
|
|
90
|
|
- "Password looks good! You're doing great. The next piece of info we'll need is your zip code. That way we can be sure to only show you other people in your area. What's your zip code?:",
|
|
|
92
|
+ "Looking good so far! You're doing great. The next piece of info we'll need is your zip code. That way we can be sure to only show you other people in your area. What's your zip code?:",
|
|
91
|
93
|
blurb: "Please provide us with a short blurb about yourself. What's your backstory?:",
|
|
92
|
94
|
image: "Hey, you're almost done! Please provide an image of yourself so others can recognize you if you ever meet up IRL:",
|
|
|
95
|
+ seeking: "Alright, let's continue! What are you seeking? Are you looking to find a position to be employed in, or are you looking to employ a candidate?",
|
|
|
96
|
+ pronouns: "When others refer to you, what pronouns do you prefer they use?:",
|
|
|
97
|
+ urgency: "How soon do you need the position filled or you need to be employed?",
|
|
|
98
|
+ presence: "Would you prefer remote, hybrid, in-person work?",
|
|
|
99
|
+ duration: "What kind of duration would you prefer? Are you looking for part-time, full-time, other?",
|
|
|
100
|
+ language: "Your native language is?...",
|
|
|
101
|
+ distance: "What distance from your home are you looking to work in?",
|
|
93
|
102
|
}
|
|
94
|
103
|
|
|
95
|
104
|
const inputPlaceholders = {
|
|
96
|
105
|
name: 'Joe Doe',
|
|
97
|
106
|
email: 'Joe@mailme.com',
|
|
98
|
107
|
zipcode: '90012',
|
|
99
|
|
- blurb: '',
|
|
100
|
|
- image: '',
|
|
|
108
|
+ password: 'supersecr3tp@ssword',
|
|
|
109
|
+ blurb: 'my backstory starts long long ago...',
|
|
|
110
|
+ distance: '5 mi'
|
|
101
|
111
|
}
|
|
102
|
112
|
|
|
103
|
113
|
export {
|