Skip to content

Commit

Permalink
Changes in Contact Page
Browse files Browse the repository at this point in the history
  • Loading branch information
Ankulraja committed May 21, 2024
1 parent 65aa296 commit f0e0237
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@
.pnp.js
.env
/.env
Backend/.env
/Backend/node_modules
/Backend/.env
/Frontend/node_modules
/Frontend/.env
# testing
/coverage

Expand Down
1 change: 1 addition & 0 deletions Backend/.env
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ CLOUD_NAME=dkoezhi9u
# Cloudinary
API_KEY=166197153345613
API_SECRET=vYHji2_e3axVjn7VmdytsjoTmaE

8 changes: 4 additions & 4 deletions Frontend/src/Components/ContactUs.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ export const ContactUs = () => {
<p className="text-2xl ">Contact us</p>

{/* <!-- Name --> */}
<input type="text" className="mt-2 h-10 rounded-md px-3" placeholder="Name"/>
<input type="text" className="mt-2 h-10 text-black rounded-md px-3" placeholder="Name"/>

{/* <!-- Email --> */}
<input type="email" className="h-10 rounded-md px-3" placeholder="E-mail"/>
<input type="email" className="h-10 rounded-md px-3 text-black" placeholder="E-mail"/>

{/* <!-- Subject --> */}
<label>Subject</label>
Expand All @@ -26,12 +26,12 @@ export const ContactUs = () => {

{/* <!-- Message --> */}
<div className="form-group">
<textarea className="form-control rounded-0 pl-2 pt-2" id="exampleFormControlTextarea2" rows="3" placeholder="Message"></textarea>
<textarea className="form-control rounded-0 text-black pl-2 pt-2" id="exampleFormControlTextarea2" rows="3" placeholder="Message"></textarea>
</div>

{/* <!-- Copy --> */}
<div className="custom-control custom-checkbox mb-4 ">
<input type="checkbox" className="custom-control-input" id="defaultContactFormCopy"/>
<input type="checkbox" className="custom-control-input text-black" id="defaultContactFormCopy"/>
<label className="custom-control-label" for="defaultContactFormCopy">Send me a copy of this message</label>
</div>

Expand Down

0 comments on commit f0e0237

Please sign in to comment.