update contact form

This commit is contained in:
somrat sorkar
2023-08-06 08:27:46 +06:00
parent a08c950a4c
commit 36f142d799
2 changed files with 12 additions and 9 deletions
+6 -3
View File
@@ -27,17 +27,19 @@ const { title, description, meta_title, image } = contact.data;
</label>
<input
id="name"
name="name"
class="form-input"
placeholder="John Doe"
type="text"
/>
</div>
<div class="mb-6">
<label for="mail" class="form-label">
<label for="email" class="form-label">
Working Mail <span class="text-red-500">*</span>
</label>
<input
id="mail"
id="email"
name="email"
class="form-input"
placeholder="john.doe@email.com"
type="email"
@@ -48,9 +50,10 @@ const { title, description, meta_title, image } = contact.data;
Anything else? <span class="text-red-500">*</span>
</label>
<textarea
id="message"
name="message"
class="form-input"
placeholder="Message goes here..."
id="message"
rows="8"></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>