mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 14:37:13 +01:00
23 lines
593 B
JavaScript
23 lines
593 B
JavaScript
export default function Contact({}) {
|
|
return (
|
|
<>
|
|
<div>
|
|
<label htmlFor="name">Name</label>
|
|
<input id="name" name="name" type="text" />
|
|
</div>
|
|
<div>
|
|
<label htmlFor="name">Verein</label>
|
|
<input id="org" name="org" type="text" />
|
|
</div>
|
|
<div>
|
|
<label htmlFor="name">Zweck der Fahrt</label>
|
|
<input id="purpose" name="purpose" type="text" />
|
|
</div>
|
|
<div>
|
|
<label htmlFor="destination">Fahrtziel</label>
|
|
<input id="destination" name="destination" type="text" />
|
|
</div>
|
|
</>
|
|
)
|
|
}
|