-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
261 lines (231 loc) · 15.7 KB
/
contact.html
File metadata and controls
261 lines (231 loc) · 15.7 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Get in touch with the OpenBWC team">
<title>Contact - OpenBWC</title>
<link rel="icon" type="image/png" href="/assets/images/favicon/favicon.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="assets/css/main.css">
<script
src="https://cdn.telemetrydeck.com/websdk/telemetrydeck.min.js"
data-app-id="C5B4CA9F-142C-4E35-8284-843B3BA8EA34"
></script>
</head>
<body>
<!-- Header / Navigation -->
<header>
<nav>
<a href="index.html" class="logo-link">
<img src="assets/images/logos/openbwc-rectangle-logo.png" alt="OpenBWC Logo" class="logo-img">
</a>
<div class="nav-links">
<a href="index.html" class="nav-link">Home</a>
<a href="about.html" class="nav-link">About</a>
<a href="team.html" class="nav-link">Who We Are</a>
<a href="publications.html" class="nav-link">Publications</a>
<a href="contact.html" class="nav-link">Contact</a>
</div>
<div style="display: flex; align-items: center; gap: 1rem;">
<label class="theme-toggle" for="theme-toggle">
<input type="checkbox" id="theme-toggle" hidden>
<div class="theme-toggle-slider"></div>
</label>
<button id="mobile-menu-btn" class="mobile-menu-btn" aria-label="Toggle menu">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7" />
</svg>
</button>
</div>
</nav>
<div id="mobile-menu" class="mobile-menu">
<a href="index.html" class="nav-link">Home</a>
<a href="about.html" class="nav-link">About</a>
<a href="team.html" class="nav-link">Who We Are</a>
<a href="publications.html" class="nav-link">Publications</a>
<a href="contact.html" class="nav-link">Contact</a>
</div>
</header>
<!-- Hero Section -->
<section class="section" style="padding-top: 3rem;">
<div class="container">
<div style="text-align: center; max-width: 800px; margin: 0 auto;">
<div class="accent-bar" style="margin: 0 auto 1.5rem;"></div>
<h1 class="mb-3">Get In Touch</h1>
<p style="font-size: 1.25rem;">
Have questions or want to collaborate? Reach out to us.
</p>
</div>
</div>
</section>
<!-- Contact Form Section -->
<section class="section">
<div class="container" style="max-width: 700px;">
<div class="card" style="padding: 3rem 2rem;">
<!-- <form>
<div class="form-group">
<label for="name" class="form-label">Name *</label>
<input type="text" id="name" name="name" class="form-input" placeholder="Your Name" required>
</div>
<div class="form-group">
<label for="email" class="form-label">Email *</label>
<input type="email" id="email" name="email" class="form-input" placeholder="you@example.com" required>
</div>
<div class="form-group">
<label for="subject" class="form-label">Subject *</label>
<input type="text" id="subject" name="subject" class="form-input" placeholder="What's this about?" required>
</div>
<div class="form-group">
<label for="message" class="form-label">Message *</label>
<textarea id="message" name="message" class="form-textarea" placeholder="Tell us more..." required></textarea>
</div>
<div style="text-align: right;">
<button type="submit" class="btn btn-primary" style="width: 100%;">
Send Message
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="currentColor" viewBox="0 0 24 24">
<path d="M2.01 21L23 12 2.01 3 2 10l15 2-15 2z"/>
</svg>
</button>
</div>
</form> -->
<form action="https://formspree.io/f/maqpalrl" method="POST" id="my-form">
<div class="form-group">
<label for="name" class="form-label">Name *</label>
<input type="text" id="name" name="name" class="form-input" placeholder="Your Name" required>
</div>
<div class="form-group">
<label for="email" class="form-label">Email *</label>
<input type="email" id="email" name="email" class="form-input" placeholder="you@example.com" required>
</div>
<div class="form-group">
<label for="subject" class="form-label">Subject *</label>
<input type="text" id="subject" name="subject" class="form-input" placeholder="What's this about?" required>
</div>
<div class="form-group">
<label for="message" class="form-label">Message *</label>
<textarea id="message" name="message" class="form-textarea" placeholder="Tell us more..." required></textarea>
</div>
<div style="text-align: right;">
<button type="submit" id="my-form-button" class="btn btn-primary" style="width: 100%;">
Send Message
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="currentColor" viewBox="0 0 24 24">
<path d="M2.01 21L23 12 2.01 3 2 10l15 2-15 2z"/>
</svg>
</button>
</div>
<p id="my-form-status" style="margin-top: 1rem; text-align: center;"></p>
</form>
</div>
</div>
</section>
<!-- Alternative Contact Methods -->
<section class="section" style="padding-top: 0;">
<div class="container" style="max-width: 900px;">
<div style="text-align: center; margin-bottom: 3rem;">
<h2 class="mb-3">Other Ways to Connect</h2>
<p style="font-size: 1.125rem;">
Prefer a different way to reach out? We're here for you.
</p>
</div>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem;">
<!-- GitHub Card -->
<div class="card" style="text-align: center;">
<div style="width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary-orange), var(--accent-teal)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;">
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" fill="white" viewBox="0 0 16 16">
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z"/>
</svg>
</div>
<h3 class="mb-2">GitHub</h3>
<p class="mb-3">Contribute to our open-source projects or report issues on GitHub.</p>
<a href="https://github.com/OpenBWC" class="btn btn-ghost" target="_blank" rel="noopener noreferrer">Visit GitHub</a>
</div>
<!-- Collaboration Card -->
<div class="card" style="text-align: center;">
<div style="width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary-orange), var(--accent-teal)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;">
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" fill="white" viewBox="0 0 24 24">
<path d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z"/>
</svg>
</div>
<h3 class="mb-2">Collaboration</h3>
<p class="mb-3">Interested in partnering with us? Let's discuss research opportunities.</p>
<a href="team.html" class="btn btn-ghost">Meet the Team</a>
</div>
<!-- Research Card -->
<div class="card" style="text-align: center;">
<div style="width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary-orange), var(--accent-teal)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;">
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" fill="white" viewBox="0 0 24 24">
<path d="M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9H9V9h10v2zm-4 4H9v-2h6v2zm4-8H9V5h10v2z"/>
</svg>
</div>
<h3 class="mb-2">Research</h3>
<p class="mb-3">Stay updated with our latest research findings and publications.</p>
<a href="publications.html" class="btn btn-ghost">View Publications</a>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="section" style="background: var(--bg-secondary); border-radius: var(--radius-xl); margin: 0 2rem; padding: 4rem 2rem;">
<div style="max-width: 800px; margin: 0 auto;">
<div style="text-align: center; margin-bottom: 3rem;">
<h2 class="mb-3">Frequently Asked Questions</h2>
</div>
<div style="display: flex; flex-direction: column; gap: 1.5rem;">
<div class="card">
<h4 style="color: var(--primary-orange); margin-bottom: 0.75rem;">How can I contribute to OpenBWC?</h4>
<p>We welcome contributions from researchers, developers, and domain experts. Visit our GitHub repository to explore open issues, submit pull requests, or propose new features.</p>
</div>
<div class="card">
<h4 style="color: var(--primary-orange); margin-bottom: 0.75rem;">Is OpenBWC available for commercial use?</h4>
<p>OpenBWC is an open-source project. Please check our GitHub repository for specific licensing details and usage guidelines.</p>
</div>
<div class="card">
<h4 style="color: var(--primary-orange); margin-bottom: 0.75rem;">Can law enforcement agencies partner with OpenBWC?</h4>
<p>Yes! We're interested in partnering with agencies committed to transparency and accountability. Contact us to discuss collaboration opportunities.</p>
</div>
<div class="card">
<h4 style="color: var(--primary-orange); margin-bottom: 0.75rem;">How do you ensure privacy and ethical use of BWC footage?</h4>
<p>Privacy and ethics are central to our mission. We implement robust anonymization techniques and work within strict ethical frameworks. Learn more on our About page.</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="footer-content">
<div class="footer-brand">
<a href="index.html" class="footer-brand-link">
<img src="assets/images/logos/openbwc-square-logo.jpg" alt="OpenBWC" class="footer-logo-img">
<span>OpenBWC</span>
</a>
<p class="footer-text">
© <span id="year"></span>. Designed for transparency.
</p>
</div>
<div class="footer-nav-links">
<a href="about.html" class="footer-link">About</a>
<a href="team.html" class="footer-link">Team</a>
<a href="publications.html" class="footer-link">Publications</a>
<a href="privacy.html" class="footer-link">Privacy</a>
<a href="tos.html" class="footer-link">Terms</a>
</div>
<div class="footer-social-links">
<a href="https://github.com/OpenBWC" target="_blank" rel="noopener noreferrer" class="social-link">
<svg width="20" height="20" fill="currentColor" viewBox="0 0 24 24"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
<span>GitHub</span>
</a>
<a href="https://www.linkedin.com/company/openbwc" target="_blank" rel="noopener noreferrer" class="social-link">
<svg width="20" height="20" fill="currentColor" viewBox="0 0 24 24"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/></svg>
<span>LinkedIn</span>
</a>
</div>
</div>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</footer>
<script src="assets/js/main.js"></script>
</body>
</html>