-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.html
More file actions
97 lines (83 loc) · 2.2 KB
/
start.html
File metadata and controls
97 lines (83 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Start Here — Free Checklist</title>
<link rel="stylesheet" href="style.css">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
background: #f9f9f9;
color: #222;
}
.hero {
background: url("three.jpg") center/cover no-repeat;
color: white;
padding: 100px 20px;
text-align: center;
}
h1 {
font-size: 36px;
}
.container {
max-width: 700px;
margin: auto;
padding: 20px;
background: white;
border-radius: 8px;
margin-top: -50px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn {
display: inline-block;
margin-top: 20px;
padding: 14px 24px;
background: #4CAF50;
color: white;
text-decoration: none;
border-radius: 6px;
font-weight: bold;
}
.btn:disabled {
background: #aaa;
cursor: not-allowed;
}
iframe {
width: 100%;
min-height: 500px;
border: none;
}
p {
margin-top: 15px;
}
</style>
</head>
<body>
<div class="hero">
<h1>Get Your Free Quickstart Checklist</h1>
<p>Enter your email below to access the rest of the site and get your PDF checklist to start buying and selling domains.</p>
</div>
<div class="container">
<h2>Email Capture</h2>
<p>Submit your email to unlock all content:</p>
<!-- Google Form Embed -->
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSdi3RDAA8C1wClG1xMWoUE20D4mBUpLMf0RvMPn7SQaEUmAIg/viewform?embedded=true" onload="enableContinue()" ></iframe>
<p><strong>After submitting, click below to continue:</strong></p>
<a id="continueBtn" href="index.html" class="btn" disabled>Continue to Site →</a>
</div>
<script>
// Enable continue button after form is interacted with
function enableContinue() {
// Simple approach: user has to click inside iframe at least once
const continueBtn = document.getElementById('continueBtn');
window.addEventListener('message', function(event) {
continueBtn.disabled = false;
});
// Fallback: enable button after 5 seconds (optional)
setTimeout(() => { continueBtn.disabled = false; }, 5000);
}
</script>
</body>
</html>