Skip to content

Commit

Permalink
Merge pull request #118 from TYPO3incubator/bugfix/contact-form-value
Browse files Browse the repository at this point in the history
[BUGFIX] Add placeholder instead of value in form
  • Loading branch information
kostandina3 authored Apr 12, 2024
2 parents f1239b8 + c702bb2 commit 9708d0e
Showing 1 changed file with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,15 @@ renderables:
label: 'Lorem ipsum dolor sit'
renderables:
-
defaultValue: 'Name *'
defaultValue: ''
type: Text
identifier: text-1
properties:
fluidAdditionalAttributes:
minlength: '3'
maxlength: '30'
required: required
placeholder: 'Name *'
validators:
-
options:
Expand All @@ -50,27 +51,31 @@ renderables:
identifier: StringLength
-
identifier: NotEmpty
label: Name
-
defaultValue: 'E-Mail address *'
defaultValue: ''
type: Email
identifier: email-1
properties:
fluidAdditionalAttributes:
required: required
placeholder: 'E-Mail address *'
validators:
-
identifier: EmailAddress
-
identifier: NotEmpty
label: 'Email address'
-
defaultValue: 'Subject *'
defaultValue: ''
type: Textarea
identifier: text-3
properties:
fluidAdditionalAttributes:
minlength: '2'
maxlength: '60'
maxlength: '600'
required: required
placeholder: 'Subject *'
validators:
-
options:
Expand All @@ -79,6 +84,7 @@ renderables:
identifier: StringLength
-
identifier: NotEmpty
label: Subject
-
type: Checkbox
identifier: checkbox-1
Expand Down

0 comments on commit 9708d0e

Please sign in to comment.