Skip to content

Commit dd94b89

Browse files
committed
Enables registration and adds Travel Stipend option to the form
1 parent c5990be commit dd94b89

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

src/app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default function Page() {
2222
<Sponsors25/>
2323
<Gallery/>
2424
<Newsletter/>
25-
{/* <Registration /> */}
25+
<Registration />
2626
{/* <Location />*/}
2727
<Speakers/>
2828
<Jury/>

src/components/Registration/Registration.jsx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import { GroupManager } from "./GroupManager/GroupManager"; // types: 0 = empty,
3434

3535
// types: 0 = empty, 1 = textfield, 2 = date, 3 = select, 4 = radio
3636

37-
const registrationClosed = true;
37+
const registrationClosed = false;
3838
const personalData = [
3939
{
4040
formLabel: "First name",
@@ -219,6 +219,16 @@ const legal = [
219219
required: false,
220220
fullWidth: true,
221221
},
222+
{
223+
formLabel: "Apply for Travel Stipend",
224+
input: [
225+
"I agree that my contact and job-related data will be passed to our partner Quantco. Quantco will reach out to you, if you will be selected. Stipend applies worldwide.",
226+
],
227+
name: "travelStipend",
228+
type: 5,
229+
required: false,
230+
fullWidth: true,
231+
},
222232
{
223233
input: [
224234
"Film and sound recordings as well as photos will be made at the event, and you agree to their subsequent use by attending the event.",

0 commit comments

Comments
 (0)