Skip to content

Commit

Permalink
contactform_fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhunu committed Nov 7, 2023
1 parent 783ccec commit 6b261e5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/components/ui/EmailTemplate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ const EmailTemplate = () => {
value={form.name}
className="h-10 rounded-lg p-5 text-black"
onChange={handleChange}
required
/>
<label className="font-semibold text-xl my-2">Email</label>
<input
Expand All @@ -85,13 +86,15 @@ const EmailTemplate = () => {
value={form.email}
className="h-10 rounded-lg p-5 text-black"
onChange={handleChange}
required
/>
<label className="font-semibold text-xl my-2">Message</label>
<textarea
name="message"
value={form.message}
className="rounded-lg p-5 text-black"
onChange={handleChange}
required
/>
<Button
variant="outline"
Expand Down

0 comments on commit 6b261e5

Please sign in to comment.