Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

contact_form added #15

Merged
merged 1 commit into from
Oct 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions components/contact_form/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Form</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.16/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-200">
<div class="container mx-auto">
<div class="max-w-md mx-auto bg-white p-5 rounded shadow-md">
<h2 class="text-2xl font-semibold mb-5 ">Contact Form</h2>
<form>
<div class="mb-4">
<label for="name" class="block text-gray-700 text-sm font-bold mb-2">Name</label>
<input type="text" id="name" name="name" class="w-full py-2 px-3 border border-gray-300 rounded" placeholder="Naitik Patel" required>
</div>
<div class="mb-4">
<label for="email" class="block text-gray-700 text-sm font-bold mb-2">Email</label>
<input type="email" id="email" name="email" class="w-full py-2 px-3 border border-gray-300 rounded" placeholder="abc@gmail.com" required>
</div>
<div class="mb-4">
<label for="Subject" class="block text-gray-700 text-sm font-bold mb-2">Subject</label>
<input type="Subject" id="Subject" name="Subject" class="w-full py-2 px-3 border border-gray-300 rounded" placeholder="Your Subject Here" required>
</div>
<div class="mb-4">
<label for="message" class="block text-gray-700 text-sm font-bold mb-2">Message</label>
<textarea id="message" name="message" class="w-full py-2 px-3 border border-gray-300 rounded" rows="4" placeholder="Your message here" required></textarea>
</div>
<button type="submit" class="bg-blue-500 text-white py-2 px-4 rounded hover:bg-blue-600 focus:outline-none focus:ring focus:border-blue-300">Submit</button>
</form>
</div>
</div>
</body>
</html>
Loading