-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
98 lines (79 loc) · 3.67 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>TBH</title>
<link rel="icon" href="tbh-logo.ico"/>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="./css/bootstrap-5.0.2.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<!-- JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.9.2/umd/popper.min.js" integrity="sha512-2rNj2KJ+D8s1ceNasTIex6z4HWyOnEYLVC3FigGOmyQCZc2eBXKgOxQmo3oKLHyfcj53uz4QMsRCWNbLd32Q1g==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.2/js/bootstrap.min.js" integrity="sha512-a6ctI6w1kg3J4dSjknHj3aWLEbjitAXAjLDRUxo2wyYmDFRcz2RJuQr5M3Kt8O/TtUSp8n2rAyaXYy1sjoKmrQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</head>
<body>
<div id="tbh-nav"></div>
<div class="jumbotron-fluid jumbotron-contact">
<h1 class="text-light mx-5 mt-5">Let's Chat!</h1>
</div>
<div class="container mt-5">
<div class="row">
<div class="col-12 mt-5">
<p align="center">We look forward to hearing from you! Your inquiry will be addressed as soon as possible.</p>
</div>
</div>
</div>
<div class="container my-5">
<form target="_blank" action="https://formsubmit.co/0e1cc206bc92457db4b87901613fabba" method="POST">
<div class="form-group">
<input type="text" name="name" class="w-100" placeholder="Full Name" required>
<input type="email" name="email" class="w-100 mt-3" placeholder="Email Address" required>
<input type="text" name="affiliation" class="w-100 mt-3" placeholder="Affiliation or Company" required>
<input type="text" name="subject" class="w-100 mt-3" placeholder="Subject" required>
<textarea placeholder="Your Message" class="w-100 mt-3" name="message" rows="10" required></textarea>
</div>
<div class="col-12 mt-5 text-center">
<button type="submit" class="btn tbh-btn">Submit Form</button>
</div>
</form>
</div>
<hr>
<div id="sponsor-cta"></div>
<div id="footer"></div>
<!-- Load navigation menu -->
<script>
var xhttp_nav = new XMLHttpRequest();
xhttp_nav.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("tbh-nav").innerHTML = xhttp_nav.responseText;
}
};
xhttp_nav.open("GET", "./nav.html", true);
xhttp_nav.send();
</script>
<!-- Load sponsorship CTA -->
<script>
var xhttp_sponsor = new XMLHttpRequest();
xhttp_sponsor.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("sponsor-cta").innerHTML = xhttp_sponsor.responseText;
}
};
xhttp_sponsor.open("GET", "./sponsor-cta.html", true);
xhttp_sponsor.send();
</script>
<!-- Load footer -->
<script>
var xhttp_footer = new XMLHttpRequest();
xhttp_footer.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("footer").innerHTML = xhttp_footer.responseText;
}
};
xhttp_footer.open("GET", "./footer.html", true);
xhttp_footer.send();
</script>
</body>
</html>