forked from ELENA0206/final_front_end
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.jsx
79 lines (77 loc) · 2.94 KB
/
Contact.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import React from "react";
function Contact() {
return (
<div className="container mt-5 p-3">
<div className="row justify-content-center">
<h2 className="text-center mt-3">Contact Us</h2>
</div>
<div className="row">
<div className="col-md-6 px-3">
<div className="mt-3 p-2 bg-secondary text-white font-weight-bold rounded">
<div className="">
<i className="fa fa-phone">
<span className="px-2">Phone:</span>
</i>
<span className="px-2">+111 1111 1111</span>
</div>
</div>
<div className="mt-3 p-2 bg-secondary text-white font-weight-bold rounded">
<div className="">
<i className="fa fa-envelope">
<span className="px-2">Email:</span>
</i>
<span className="px-2">[email protected]</span>
</div>
</div>
<div className="mt-3 p-2 bg-secondary text-white font-weight-bold rounded">
<div className="">
<i className="fa fa-map-marker">
<span className="px-2">Headquarters:</span>
</i>
<span className="px-2">California , USA</span>
</div>
</div>
</div>
<div className="col-md-6">
<div className="card mt-3 px-4">
<div className="text-center">
Send us a message?
</div>
<div>
<form action="" className="form mt-3">
<div className="form-group">
<h5 className="text-dark font-weight-bold">Name</h5>
<input placeholder="Your Name" name="name" required className="form-control" type="text" />
</div>
<div className="form-group mt-2">
<h5 className="text-dark font-weight-bold">Email</h5>
<input placeholder="Your Email" name="email" required className="form-control" type="email" />
</div>
<div className="form-group mt-2">
<h5 className="text-dark font-weight-bold">Message</h5>
<textarea
required
placeholder="Your Message"
rows="5"
name="message"
className="form-control"
type="text"
></textarea>
</div>
<div className="form-group my-4">
<button type="submit" className="btn btn-outline-dark w-100">Send Message</button>
</div>
</form>
</div>
</div>
</div>
</div>
<div className="row">
<div className="alert alert-primary rounded p-3 my-5 text-center">
Please feel free to contact us via all the provided methods!
</div>
</div>
</div>
);
}
export default Contact;