import React from 'react'; import { ContactDataValidator } from '../../../../assets/javascripts/registration-validator.js' function PersonalDataContainer({ onStepClick, labels, participant_data, local_groups }) { const handle_next_step = () => { if (ContactDataValidator()) { onStepClick(4); } } return (
{labels.headlines.personaldata} |
|
| {labels.common.firstname}; | |
| {labels.common.lastname}: | |
| {labels.common.nickname} | |
| {labels.common.localgroup} | |
| {labels.common.birthday}: | |
| {labels.common.street}, {labels.common.housenumber}: | |
| {labels.common.postal_code}, {labels.common.city}: | |
| {labels.common.telephone}: | |
| {labels.common.email}: | |
| handle_next_step()} /> | |