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

Enhanced contact us #838

Merged
merged 1 commit into from
Oct 26, 2024
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
33 changes: 18 additions & 15 deletions pages/blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -405,21 +405,24 @@ <h3 class="title-lg card-title">
- #Contact Us
-->

<section id="contact" class="cta" aria-labelledby="cta-label">
<div class="container">

<h2 class="headline-md section-title" id="cta-label" data-aos="fade-right">
Contact Us
</h2>

<form id="contact-form" data-aos="fade-left">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" placeholder="Your Message" required></textarea>
<button type="submit">Send</button>
</form>
</div>
</section>
<section class="contact-section">
<h2 class="headline-md section-title" id="cta-label" data-aos="fade-right">
Contact Us
</h2>

<form id="contact-form" data-aos="fade-left" aria-labelledby="cta-label">
<label for="name" class="sr-only">Name</label>
<input type="text" id="name" name="name" placeholder="Your Name" required>

<label for="email" class="sr-only">Email</label>
<input type="email" id="email" name="email" placeholder="Your Email" required>

<label for="message" class="sr-only">Message</label>
<textarea id="message" name="message" placeholder="Your Message" required></textarea>

<button type="submit">Send Message</button>
</form>
</section>


<div class="footer-bottom">
Expand Down