one page
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Stay in the Loop | DJ Money Tree</title>
<style>
body {
margin: 0;
padding: 0;
font-family: 'Helvetica Neue', sans-serif;
background: linear-gradient(to right, #000000, #1c1c1c);
color: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.container {
max-width: 500px;
padding: 20px;
}
h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}
p {
font-size: 1rem;
margin-bottom: 30px;
color: #ccc;
}
input {
width: 100%;
padding: 15px;
margin: 10px 0;
border: none;
border-radius: 5px;
font-size: 1rem;
}
button {
width: 100%;
padding: 15px;
background: #00ff99;
color: #000;
font-size: 1.2rem;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s ease;
}
button:hover {
background: #00cc7a;
}
.privacy {
margin-top: 15px;
font-size: 0.8rem;
color: #888;
}
</style>
</head>
<body>
<div class="container">
<h1>Be the First to Know</h1>
<p>Get exclusive updates, event drops & promo invites from DJ Money Tree.</p>
<form method="post" action="/contact#contact_form" id="contact_form" accept-charset="UTF-8" class="contact-form">
<input type="hidden" name="form_type" value="customer">
<input type="hidden" name="utf8" value="✓">
<input type="email" name="contact[email]" placeholder="Your Email Address" required>
<input type="tel" name="contact[phone]" placeholder="Your Phone Number (Optional)">
<button type="submit">Subscribe</button>
</form>
<p class="privacy">We respect your privacy. No spam, ever.</p>
</div>
</body>
</html>