You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Please let us know if you have severe allergies that we must know about.",
@@ -101,7 +100,7 @@ const personalData = [
101
100
},
102
101
{
103
102
formLabel: "University/School/Institute",
104
-
type: 6,
103
+
type: INPUT_TYPES.AUTOCOMPLETE,
105
104
input: universities,
106
105
name: "university",
107
106
max: 150,
@@ -110,7 +109,7 @@ const personalData = [
110
109
},
111
110
{
112
111
formLabel: "Course of study",
113
-
type: 1,
112
+
type: INPUT_TYPES.TEXT_FIELD,
114
113
input: ["e. g. Computer Science"],
115
114
name: "fieldOfStudy",
116
115
max: 150,
@@ -119,7 +118,7 @@ const personalData = [
119
118
},
120
119
{
121
120
formLabel: "Intended degree",
122
-
type: 3,
121
+
type: INPUT_TYPES.SELECT,
123
122
input: ["High School Diploma","Bachelor","Master","PhD"],
124
123
name: "intendedDegree",
125
124
required: true,
@@ -129,7 +128,7 @@ const personalData = [
129
128
constmotivation=[
130
129
{
131
130
formLabel: "How did you hear from us?",
132
-
type: 4,
131
+
type: INPUT_TYPES.RADIO,
133
132
input: [
134
133
"university/school/institute",
135
134
"friends/other students",
@@ -141,11 +140,11 @@ const motivation = [
141
140
},
142
141
{
143
142
formLabel: "",
144
-
type: 0,
143
+
type: INPUT_TYPES.EMPTY,
145
144
},
146
145
{
147
146
formLabel: "Your motivation",
148
-
type: 1,
147
+
type: INPUT_TYPES.TEXT_FIELD,
149
148
input: ["My motivation is ..."],
150
149
helperText:
151
150
"Please write a short text (max. 1200 characters) or 3 key phrases describing your motivation to be part of HackHPI. If you can't think of anything, take the following questions as guidance: Can you share a project, creation, or task that holds a special place as one of your favorites? What motivated you to undertake it, and what aspects make you proud of the outcome?",
@@ -162,7 +161,7 @@ const motivation = [
162
161
constskills=[
163
162
{
164
163
formLabel: "Tech stack",
165
-
type: 1,
164
+
type: INPUT_TYPES.TEXT_FIELD,
166
165
input: ["e. g. Python, ..."],
167
166
helperText:
168
167
"Please note programming languages, frameworks, etc. you have already worked with.",
0 commit comments