Skip to content

Commit

Permalink
Merge pull request #1827 from Adityadhiman0/main
Browse files Browse the repository at this point in the history
Fixes issue #1814 [Add icons on contact us page.]
  • Loading branch information
hiteashgupta1 authored Nov 10, 2024
2 parents 57ba1b9 + 1cba3b9 commit 6addfcb
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions contact_us.html
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,8 @@ <h1 class="fade-in" style="font-size: 48px; margin-bottom: 20px; color: var(--te
<!-- Right Section with Form -->
<div class="right-section" style="flex: 1;">
<form id="contactForm">
<div class="form-group" style="margin-bottom: 20px">
<div class="form-group" style="margin-bottom: 20px;" >
<i class="fas fa-user" style="position: relative; top: 1.6rem; left: -11rem;"></i>
<input type="text" id="Name" placeholder="Name" name="Name" required style="
width: 100%;
padding: 10px 0;
Expand All @@ -464,10 +465,12 @@ <h1 class="fade-in" style="font-size: 48px; margin-bottom: 20px; color: var(--te
border: none;
border-bottom: 2px solid var(--text-color);
outline: none;
padding-left: 25px;
" />
</div>

<div class="form-group" style="margin-bottom: 20px">
<i class="fas fa-envelope" style="position: relative; top: 1.7rem; left: -11rem;"></i>
<input type="email" id="email2" placeholder="Email Address" name="email" required style="
width: 100%;
padding: 10px 0;
Expand All @@ -478,10 +481,12 @@ <h1 class="fade-in" style="font-size: 48px; margin-bottom: 20px; color: var(--te
border: none;
border-bottom: 2px solid var(--text-color);
outline: none;
padding-left: 25px;
" />
</div>

<div class="form-group" style="margin-bottom: 20px">
<i class="fas fa-phone" style="position: relative; top: 1.6rem; left: -11rem;"></i>
<input type="number" id="phone" placeholder="Phone Number" name="phone" required style="
width: 100%;
padding: 10px 0;
Expand All @@ -492,12 +497,14 @@ <h1 class="fade-in" style="font-size: 48px; margin-bottom: 20px; color: var(--te
border: none;
border-bottom: 2px solid var(--text-color);
outline: none;
padding-left: 25px;
" />

<span id="error-message" style="color: red; display: none;">Please enter up to 10 digits.</span>
</div>

<div class="form-group" style="margin-bottom: 20px">
<i class="fas fa-message" style="position: relative; top: 1.6rem; left: -11rem;"></i>
<textarea id="message" name="message" placeholder="Message" required style="
width: 100%;
padding: 10px 0;
Expand All @@ -507,7 +514,8 @@ <h1 class="fade-in" style="font-size: 48px; margin-bottom: 20px; color: var(--te
border-radius: 0px;
border: none;
border-bottom: 2px solid var(--text-color);
outline: none;"></textarea>
outline: none;
padding-left: 25px;"></textarea>

</div>

Expand Down

1 comment on commit 6addfcb

@vercel
Copy link

@vercel vercel bot commented on 6addfcb Nov 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.