remove duplication with placeholders

This commit is contained in:
Thomas Ruoff
2020-08-12 00:38:31 +02:00
parent 0606d643e7
commit ea487c4c78
2 changed files with 0 additions and 8 deletions

View File

@@ -19,7 +19,6 @@ export default function Contact() {
<Form.Control <Form.Control
type="text" type="text"
name="name" name="name"
placeholder="Name"
value={name} value={name}
onChange={onChangeEvent} onChange={onChangeEvent}
required required
@@ -32,7 +31,6 @@ export default function Contact() {
<Form.Control <Form.Control
type="email" type="email"
name="email" name="email"
placeholder="E-Mail"
value={email} value={email}
onChange={onChangeEvent} onChange={onChangeEvent}
required required
@@ -45,7 +43,6 @@ export default function Contact() {
<Form.Control <Form.Control
type="text" type="text"
name="street" name="street"
placeholder="Straße"
value={street} value={street}
onChange={onChangeEvent} onChange={onChangeEvent}
required required
@@ -59,7 +56,6 @@ export default function Contact() {
<Form.Control <Form.Control
type="text" type="text"
name="zip" name="zip"
placeholder="PLZ"
value={zip} value={zip}
onChange={onChangeEvent} onChange={onChangeEvent}
required required
@@ -72,7 +68,6 @@ export default function Contact() {
<Form.Control <Form.Control
type="text" type="text"
name="city" name="city"
placeholder="Stadt"
value={city} value={city}
onChange={onChangeEvent} onChange={onChangeEvent}
required required

View File

@@ -18,7 +18,6 @@ export default function Contact() {
<Form.Control <Form.Control
type="text" type="text"
name="purpose" name="purpose"
placeholder="Zweck der Fahrt"
value={purpose} value={purpose}
onChange={onChangeEvent} onChange={onChangeEvent}
required required
@@ -29,7 +28,6 @@ export default function Contact() {
<Form.Control <Form.Control
type="text" type="text"
name="org" name="org"
placeholder="Verein"
value={org} value={org}
onChange={onChangeEvent} onChange={onChangeEvent}
/> />
@@ -41,7 +39,6 @@ export default function Contact() {
<Form.Control <Form.Control
type="text" type="text"
name="destination" name="destination"
placeholder="Fahrtziel"
value={destination} value={destination}
onChange={onChangeEvent} onChange={onChangeEvent}
required required