Skip to content

Commit 47c4c23

Browse files
committed
Create skeleton for contact page
1 parent f481b1c commit 47c4c23

1 file changed

Lines changed: 38 additions & 1 deletion

File tree

app/components/Contact.tsx

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,44 @@
11
import React from 'react';
22

33
const Contact: React.FC = () => {
4-
return <div className="home">Hello this is the Contact</div>;
4+
return (
5+
<div className="home">
6+
<div>
7+
<h1>Contact Us!</h1>
8+
<p>The Chronos Team is always looking for any feedback or suggestions for Chronos.</p>
9+
<p>
10+
If you would like your voice heard, fill out the form and we will get back to you ASAP!
11+
</p>
12+
</div>
13+
<div>
14+
<form>
15+
<label htmlFor="fname">First Name</label>
16+
<input type="text" id="fname" name="firstname" placeholder="Your name.." />
17+
<br />
18+
<label htmlFor="lname">Last Name</label>
19+
<input type="text" id="lname" name="lastname" placeholder="Your last name.." />
20+
<br />
21+
<label htmlFor="email">E-mail</label>
22+
<input type="text" id="email" name="email" placeholder="Your e-mail address.." />
23+
<br />
24+
<label htmlFor="subject">Subject</label>
25+
<input type="text" id="subject" name="subject" placeholder="Subject" />
26+
<br />
27+
<label htmlFor="message">Message</label>
28+
<textarea
29+
id="message"
30+
name="message"
31+
placeholder="Write something.." /*style="height:200px"*/
32+
></textarea>
33+
<br />
34+
<label htmlFor="myfile">Select a file:</label>
35+
<input type="file" id="myfile" name="myfile"></input>
36+
<br />
37+
<input type="submit" value="Submit" />
38+
</form>
39+
</div>
40+
</div>
41+
);
542
};
643

744
export default Contact;

0 commit comments

Comments
 (0)