diff --git a/src/components/forms/registration-form.tsx b/src/components/forms/registration-form.tsx index 8f3728a..ca4aa17 100644 --- a/src/components/forms/registration-form.tsx +++ b/src/components/forms/registration-form.tsx @@ -265,14 +265,21 @@ export default function RegistrationForm() { - {(occupation === "APPRENTICE" || occupation === "EMPLOYEE") && ( + {(occupation === "APPRENTICE" || + occupation === "STUDENT" || + occupation === "EMPLOYEE" || + occupation == "OTHER") && (

Deine Firma

- Falls du in einer Firma arbeitest, kannst du diese hier angeben. + {occupation === "APPRENTICE" + ? "Bitte gib hier die Firma an, von der du ausgebildet wirst." + : occupation === "EMPLOYEE" + ? "Bitte gib hier die Firma an, bei der du arbeitest." + : "Falls du in einer Firma arbeitest, kannst du diese hier angeben."}

@@ -300,15 +307,21 @@ export default function RegistrationForm() { {(occupation === "APPRENTICE" || occupation === "PUPIL" || - occupation === "STUDENT") && ( + occupation === "STUDENT" || + occupation === "OTHER") && (

- Deine (Hoch-)Schule + {occupation === "PUPIL" + ? "Deine Schule" + : "Deine Universität/Hochschule"}

- Falls du an einer (Hoch-)Schule bist, kannst du diese hier - angeben. + {occupation === "PUPIL" + ? "Bitte gib hier deine Schule an." + : occupation == "STUDENT" + ? "Bitte gib hier deine Universität oder Hochschule an." + : "Falls du an einer Universität oder Hochschule bist, kannst du diese hier angeben."}