-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
142 lines (133 loc) · 4.3 KB
/
contact.html
File metadata and controls
142 lines (133 loc) · 4.3 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!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="./css/custom-styles.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-contact">
<h1 class="display-5 mx-5 mt-5">Let's chat!</h1>
</div>
<div class="container mt-5">
<div class="row">
<div class="col-12 mt-3">
<h3 align="center">We look forward to hearing from you!</h3>
<h3 align="center">
Your inquiry will be addressed as soon as possible.
</h3>
</div>
</div>
</div>
<div class="container my-5">
<div class="row justify-content-center">
<div class="col-12 col-lg-8">
<form
target="_blank"
action="https://formsubmit.co/40b9945130381ab340f52fe0dec4d685"
method="POST"
>
<input
type="text"
name="name"
class="form-control mt-3 py-2"
placeholder="Full Name"
required
/>
<input
type="email"
name="email"
class="form-control mt-3 py-2"
placeholder="Email Address"
required
/>
<input
type="text"
name="affiliation"
class="form-control mt-3 py-2"
placeholder="Affiliation or Company"
required
/>
<input
type="text"
name="subject"
class="form-control mt-3 py-2"
placeholder="Subject"
required
/>
<textarea
placeholder="Your Message"
class="form-control mt-3 py-2"
name="message"
rows="10"
required
></textarea>
<div class="col-12 mt-5 text-center">
<button type="submit" class="btn tbh-btn">Submit Form</button>
</div>
</form>
</div>
</div>
</div>
<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>