mirror of
https://github.com/DevEhChad/chadsreactproject.git
synced 2025-11-08 13:31:35 +00:00
34 lines
1005 B
JavaScript
34 lines
1005 B
JavaScript
import React from "react";
|
|
import TrainLeft from "../assets/1132066.jpg";
|
|
import "../styles/Contact.css";
|
|
|
|
function Contact() {
|
|
return (
|
|
<div className="contact">
|
|
<div
|
|
className="leftSide"
|
|
style={{ backgroundImage: `url(${TrainLeft})` }}
|
|
></div>
|
|
<div className="rightSide">
|
|
<h1> Contact Us</h1>
|
|
|
|
<form id="contact-form" method="POST">
|
|
<label htmlFor="name">Full Name</label>
|
|
<input name="name" placeholder="Enter full name..." type="text" />
|
|
<label htmlFor="email">Email</label>
|
|
<input name="email" placeholder="Enter email..." type="email" />
|
|
<label htmlFor="message">Message</label>
|
|
<textarea
|
|
rows="6"
|
|
placeholder="Enter message..."
|
|
name="message"
|
|
required
|
|
></textarea>
|
|
<button type="submit"> Send Message</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Contact; |