File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import React from 'react' ;
22
33const 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
744export default Contact ;
You can’t perform that action at this time.
0 commit comments