-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
98 lines (84 loc) · 4.71 KB
/
contact.html
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - FutureSeeds</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header></header>
<main>
<section class="contact-hero py-2">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="text_container">
<h1>Still have a question or want <br> to submit a request?</h1>
<p> Get in touch, we’d love to hear from you! <br>
Reach out with any questions or feedback, and <br>
our team will get back to you shortly.<br>
</p>
</div>
<div class="map_container">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d510.75984308401206!2d-97.15123398955478!3d49.89021145179071!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x52ea71597ee49315%3A0x4c8bce870f85618f!2sUniversity%20Of%20Winnipeg%20Division%20of%20Continuing%20Education!5e0!3m2!1sen!2sca!4v1727892870948!5m2!1sen!2sca"
width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade" title="our location">
</iframe>
</div>
</div>
<div class="col-md-6">
<div class="contact_form_container">
<form id="contactForm" novalidate>
<div class="get_in_touch">Get In Touch With Us</div>
<div class="form-group">
<label for="email" class=" formko">Email</label>
<input type="email" class="form-control" id="email"
placeholder="Enter your email address" required>
<div class="invalid-feedback">Please enter a valid email address.</div>
</div>
<div class="form-group">
<label for="name" class=" formko">Full Name</label>
<input type="text" class="form-control " id="name" placeholder="Enter your name"
required>
<div class="invalid-feedback">Please use alphabets letter.</div>
</div>
<div class="form-group">
<label for="message" class="formko">Message</label>
<textarea class="form-control" id="message" rows="5" placeholder="Your message..."
required></textarea>
<div class="invalid-feedback">Please enter your message.</div>
</div>
<button type="submit" class="submit_button">Submit</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Bootstrap Modal -->
<div class="modal fade" id="submissionModal" tabindex="-2" aria-labelledby="submissionModalLabel"
aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header text-center">
<h5 class="modal-title " id="submissionModalLabel">We’re on it!</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
We usually respond within 48 hours. You can view and update your message in your email.
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Okay</button>
</div>
</div>
</div>
</div>
</main>
<footer></footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>