-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcontact.html
More file actions
94 lines (82 loc) · 3.87 KB
/
Copy pathcontact.html
File metadata and controls
94 lines (82 loc) · 3.87 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contact Us | Signal Share</title>
<link rel="stylesheet" href="./questions-guide.css?v=1.5">
<link rel="stylesheet" href="./android-optimizations.css?v=1.5">
<script>
// Signal Share Android Optimization Suite - Detection
(function() {
const isNative = !!window.Capacitor && typeof window.Capacitor.getPlatform === 'function' && window.Capacitor.getPlatform() !== 'web';
if (isNative || /Android/i.test(navigator.userAgent)) {
document.documentElement.classList.add('platform-android');
}
})();
</script>
</head>
<body class="questions-page">
<main class="questions-page-shell">
<a class="questions-back-link" href="./index.html">← Back to site</a>
<p class="questions-page-topline">Contact</p>
<h1>Contact us</h1>
<p class="questions-page-lede">
This is a base contact page template. Replace the placeholder details with your real support email,
form service, social links, or business contact method when ready.
</p>
<section class="questions-page-card">
<h2>Contact options to fill in later</h2>
<div class="questions-contact-note">
<p><strong>Support email:</strong> your-email@example.com</p>
<p><strong>Business inquiries:</strong> business@example.com</p>
<p><strong>Response time:</strong> Add your expected response window here.</p>
<p><strong>Social links:</strong> Add Instagram, TikTok, GitHub, Discord, or company links here.</p>
</div>
</section>
<section class="questions-page-card">
<h2>Contact form template</h2>
<p>
This form is only a front-end template right now. To make it send messages, connect it later to
Supabase, Formspree, Netlify Forms, EmailJS, or your own backend endpoint.
</p>
<form class="questions-contact-template" action="#" method="post">
<label>
Name
<input type="text" name="name" placeholder="Your name">
</label>
<label>
Email
<input type="email" name="email" placeholder="you@example.com">
</label>
<label>
Topic
<select name="topic">
<option value="">Choose a topic</option>
<option value="how-to">How-to question</option>
<option value="account">Account/profile issue</option>
<option value="media">Media or Hero Player issue</option>
<option value="business">Business inquiry</option>
<option value="safety">Safety or concern</option>
<option value="other">Other</option>
</select>
</label>
<label>
Message
<textarea name="message" placeholder="Write your message here..."></textarea>
</label>
<button class="questions-page-button" type="button">Template only — connect later</button>
</form>
</section>
<div class="questions-guide-footer">
<div class="footer-links">
<a href="./index.html">Back to Site</a>
<a href="./how-to-guide.html">Back to How-To</a>
<a href="./hero-player-deepdive.html">Back to Dev Tools</a>
</div>
<span>Signal Share Engineering Documentation</span><br>
<span>© 2026 Deep Dive Series</span>
</div>
</main>
</body>
</html>