-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsuccess.html
More file actions
170 lines (156 loc) · 5.28 KB
/
success.html
File metadata and controls
170 lines (156 loc) · 5.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to BlackRoad OS! 🎉</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: linear-gradient(135deg, #10b981 0%, #059669 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
color: white;
}
.container {
max-width: 700px;
padding: 40px;
text-align: center;
}
.checkmark {
font-size: 6rem;
margin-bottom: 20px;
animation: bounce 0.5s ease-in-out;
}
@keyframes bounce {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.2); }
}
h1 {
font-size: 3rem;
margin-bottom: 20px;
font-weight: 800;
}
.subtitle {
font-size: 1.3rem;
margin-bottom: 40px;
opacity: 0.9;
}
.card {
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
padding: 40px;
border-radius: 20px;
margin: 30px 0;
text-align: left;
}
.card h2 {
font-size: 1.5rem;
margin-bottom: 20px;
}
.step {
padding: 15px 0;
border-bottom: 1px solid rgba(255,255,255,0.1);
}
.step:last-child {
border-bottom: none;
}
.step-number {
display: inline-block;
background: rgba(255,255,255,0.2);
width: 30px;
height: 30px;
border-radius: 50%;
text-align: center;
line-height: 30px;
margin-right: 15px;
font-weight: bold;
}
.button {
background: white;
color: #10b981;
border: none;
padding: 20px 60px;
font-size: 1.3rem;
border-radius: 50px;
cursor: pointer;
font-weight: 700;
transition: transform 0.2s, box-shadow 0.2s;
margin: 20px 10px;
text-decoration: none;
display: inline-block;
}
.button:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.secondary {
background: rgba(255,255,255,0.2);
color: white;
}
.badge {
display: inline-block;
background: rgba(255,255,255,0.2);
padding: 8px 20px;
border-radius: 20px;
margin: 10px 5px;
font-size: 0.9rem;
}
</style>
</head>
<body>
<div class="container">
<div class="checkmark">✅</div>
<h1>You're In! 🎉</h1>
<p class="subtitle">Welcome to BlackRoad OS, Founding Member!</p>
<div class="badge">🎁 50% OFF FOREVER</div>
<div class="badge">🏆 FOUNDING MEMBER</div>
<div class="badge">⚡ EARLY ACCESS</div>
<div class="card">
<h2>What Happens Next?</h2>
<div class="step">
<span class="step-number">1</span>
<strong>Check your email</strong> - Your login credentials and welcome guide are on the way
</div>
<div class="step">
<span class="step-number">2</span>
<strong>14-day free trial starts now</strong> - No charges until trial ends
</div>
<div class="step">
<span class="step-number">3</span>
<strong>Join our Discord</strong> - Get help, request features, meet other founders
</div>
<div class="step">
<span class="step-number">4</span>
<strong>Book your onboarding call</strong> - We'll personally help you get set up
</div>
</div>
<div class="card">
<h2>Your Founding Member Benefits</h2>
<div class="step">
💰 <strong>50% off for life</strong> - $29/mo instead of $58, forever
</div>
<div class="step">
🚀 <strong>Early access</strong> - Try new features before anyone else
</div>
<div class="step">
💬 <strong>Direct access</strong> - Chat directly with our team anytime
</div>
<div class="step">
🎯 <strong>Priority support</strong> - Your issues get handled first
</div>
<div class="step">
🏆 <strong>Founding Member badge</strong> - Show off your early adopter status
</div>
</div>
<a href="https://app.blackroad.io/login" class="button">Go to Dashboard</a>
<a href="https://discord.gg/blackroad" class="button secondary">Join Discord</a>
<p style="opacity: 0.7; margin-top: 40px;">
Questions? Email us at <a href="mailto:blackroad.systems@gmail.com" style="color: white;">blackroad.systems@gmail.com</a>
</p>
</div>
</body>
</html>