diff options
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/components/RsvpForm.tsx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/client/src/components/RsvpForm.tsx b/client/src/components/RsvpForm.tsx index a754be5..84b05e0 100644 --- a/client/src/components/RsvpForm.tsx +++ b/client/src/components/RsvpForm.tsx @@ -214,6 +214,24 @@ function RsvpForm() { {...register('message')} /> </Grid> + <Grid item xs={6}> + <TextField + label="First Name" + variant="outlined" + fullWidth + inputProps={{ readOnly: true }} + {...register('firstName')} + /> + </Grid> + <Grid item xs={6}> + <TextField + label="Last Name" + variant="outlined" + fullWidth + inputProps={{ readOnly: true }} + {...register('lastName')} + /> + </Grid> {fields.map((field, index) => { return ( <Grid |