update contact form and hugo modules

This commit is contained in:
somrat sorkar
2023-08-06 08:19:16 +06:00
parent 3e2ac9f852
commit 758bc53106
12 changed files with 259 additions and 244 deletions

View File

@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html
itemscope
lang="{{ site.LanguageCode | default `en-US` }}"

View File

@@ -13,16 +13,18 @@
</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" />
@@ -32,9 +34,10 @@
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>