mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-04 15:07:13 +01:00
remove duplication with placeholders
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user