-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
205 lines (182 loc) · 7.57 KB
/
contact.html
File metadata and controls
205 lines (182 loc) · 7.57 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Contact — Intent FreeDomain</title>
<meta name="description" content="Contact Intent FreeDomain - Get support via Discord, Email, or our contact form.">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="apple-touch-icon" href="favicon.png">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap" rel="stylesheet">
<style>
:root {
--bg-overlay: rgba(7, 18, 38, 0.55);
--glass: rgba(255, 253, 240, 0.12);
--glass-border: rgba(255, 255, 255, 0.15);
--accent-blue: #3b82f6;
--deep-blue: #1e3a8a;
--cream-text: #fefce8;
--muted-cream: #cbd5e1;
--card-radius: 16px;
}
* { box-sizing: border-box; }
body {
margin: 0;
font-family: 'Inter', sans-serif;
color: var(--cream-text);
min-height: 100vh;
background: linear-gradient(var(--bg-overlay), var(--bg-overlay)),
url(photo-1501785888041-af3ef285b470.jpeg) no-repeat center center fixed;
background-size: cover;
-webkit-font-smoothing: antialiased;
}
header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 15px 4%;
position: sticky;
top: 0;
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
z-index: 100;
border-bottom: 1px solid var(--glass-border);
}
.brand { display: flex; align-items: center; text-decoration: none; }
.logo-wrap {
width: 40px; height: 40px; border-radius: 10px;
background: var(--accent-blue); display: flex;
align-items: center; justify-content: center;
margin-right: 12px; overflow: hidden;
}
.logo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.brand .title { font-weight: 800; font-size: 1.1rem; color: #fff; letter-spacing: -0.5px; }
nav { display: flex; gap: 18px; align-items: center; }
nav a {
font-weight: 500; font-size: 13px; text-decoration: none;
color: var(--muted-cream); transition: all 0.2s;
text-transform: uppercase; letter-spacing: 0.5px;
}
nav a:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
.nav-btn {
background: rgba(59, 130, 246, 0.2);
padding: 6px 12px; border-radius: 6px; border: 1px solid var(--accent-blue);
}
main.container {
max-width: 1200px;
margin: 40px auto;
padding: 0 20px;
}
.glass-panel {
background: var(--glass);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid var(--glass-border);
border-radius: var(--card-radius);
padding: 35px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
h1, h2 { color: #fff; margin-top: 0; font-weight: 800; }
p { color: var(--muted-cream); line-height: 1.6; }
a { color: var(--accent-blue); text-decoration: none; font-weight: 600; }
a:hover { text-decoration: underline; }
/* Form Styles */
input, textarea {
width: 100%;
padding: 12px 18px;
border-radius: 10px;
border: 1px solid var(--glass-border);
background: rgba(0, 0, 0, 0.2);
color: #fff;
margin-bottom: 15px;
outline: none;
font-family: inherit;
}
input:focus, textarea:focus { border-color: var(--accent-blue); }
.btn {
padding: 12px 24px; border-radius: 10px; border: none; cursor: pointer;
font-weight: 700; text-decoration: none; display: inline-block;
transition: all 0.3s ease; text-align: center; font-size: 14px;
}
.btn-primary { background: var(--accent-blue); color: white; }
.btn-outline { border: 1px solid var(--glass-border); color: white; background: rgba(255,255,255,0.05); }
.btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
footer {
padding: 60px 5% 40px; margin-top: 80px; background: rgba(0,0,0,0.4);
display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px;
}
footer a { color: inherit; text-decoration: none; font-size: 13px; }
@media (max-width: 1000px) { nav { display: none; } }
</style>
</head>
<body>
<header>
<a href="/" class="brand">
<div class="logo-wrap">
<img src="favicon.png" alt="Intent Logo">
</div>
<div class="title">Intent FreeDomain</div>
</a>
<nav>
<a href="/about.html">About</a>
<a href="/contact.html">Contact</a>
<a href="/privacy.html">Privacy</a>
<a href="/terms.html">Terms</a>
<a href="/abuse.html">Abuse</a>
<a href="https://dash.int.yt/signup.php" class="nav-btn">Register</a>
<a href="https://dash.int.yt/login.php">Dashboard</a>
</nav>
</header>
<main class="container">
<div class="glass-panel">
<h1>Contact Us</h1>
<p>Fastest support via Discord. For formal requests, use the channels below.</p>
<div style="margin: 25px 0; display: grid; gap: 10px;">
<p><strong style="color:#fff">Google Forum</strong>: <a href="https://docs.google.com/forms/d/e/1FAIpQLSdHV3fBwt1DLkPGB4JicUUySFzLRvNuvpVkufWOtlZhAft7AQ/viewform">Contact Form Link</a></p>
<p><strong style="color:#fff">Discord</strong>: <a href="https://discord.gg/NCS96PS4MH">https://discord.gg/NCS96PS4MH</a></p>
<p><strong style="color:#fff">Email</strong>: <a href="mailto:support@int.yt">support@int.yt</a></p>
</div>
<h2 style="font-size: 1.5rem; margin-top: 30px;">Send us a message</h2>
<form id="contactForm">
<input name="name" placeholder="Your name" required>
<input name="email" type="email" placeholder="Your email" required>
<textarea name="message" rows="6" placeholder="How can we help?" required></textarea>
<div style="display:flex; gap:12px;">
<button type="submit" class="btn btn-primary">Send Message</button>
<button type="button" id="openDiscord" class="btn btn-outline">Open Discord</button>
</div>
</form>
<div id="res" style="margin-top:20px; color: #fff; font-weight: 600;"></div>
</div>
</main>
<footer>
<div style="max-width: 300px;">
<h3 style="margin: 0 0 10px 0;">Intent FreeDomain</h3>
<p style="font-size: 13px; color: var(--muted-cream)">Privacy-first DNS solutions for the modern web.</p>
</div>
<div style="display: flex; gap: 50px;">
<div style="display: flex; flex-direction: column; gap: 10px;">
<span style="font-weight: 800; font-size: 11px; color: var(--accent-blue); letter-spacing: 1px;">LEGAL</span>
<a href="/privacy.html">Privacy</a>
<a href="/terms.html">Terms</a>
<a href="/abuse.html">Abuse</a>
</div>
<div style="display: flex; flex-direction: column; gap: 10px;">
<span style="font-weight: 800; font-size: 11px; color: var(--accent-blue); letter-spacing: 1px;">PAGES</span>
<a href="/about.html">About</a>
<a href="/contact.html">Contact</a>
<a href="https://dash.int.yt/public-whois.php">WHOIS</a>
</div>
</div>
</footer>
<script>
document.getElementById('contactForm').addEventListener('submit', async (e)=>{
e.preventDefault();
document.getElementById('res').innerText = 'Thanks — please join our Discord for fastest support: https://discord.gg/NCS96PS4MH';
e.target.reset();
});
document.getElementById('openDiscord').addEventListener('click', ()=> window.open('https://discord.gg/NCS96PS4MH','_blank'));
</script>
</body>
</html>