<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bind Systems | Coming Soon</title>
<style>
body {
margin: 0;
padding: 0;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
background-color: #e9ecef;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
color: #1a2e3b;
}
.container {
text-align: center;
padding: 40px 20px;
max-width: 500px;
}
img {
max-width: 100%;
height: auto;
border-radius: 8px;
margin-bottom: 1.5rem;
}
h1 {
font-size: 2.2rem;
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 0.5rem;
}
p {
font-size: 1.1rem;
opacity: 0.8;
margin-bottom: 2rem;
}
/* Signup Form Styles */
.signup-form {
display: flex;
flex-direction: column;
gap: 10px;
}
input[type="email"] {
padding: 15px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 1rem;
outline: none;
}
button {
padding: 15px;
background-color: #1a2e3b; /* Matching the logo navy */
color: white;
border: none;
border-radius: 5px;
font-size: 1rem;
font-weight: bold;
cursor: pointer;
transition: background 0.3s;
}
button:hover {
background-color: #2c4a5f;
}
</style>
</head>
<body>
<div class="container">
<img src="logo.png" alt="Bind Systems Logo">
<h1>Coming Soon</h1>
<p>Get notified when Bind Systems goes live.</p>
<form action="https://formspree.io/f/xvzgeypq" method="POST" class="signup-form">
<input type="email" name="email" placeholder="Enter your email address" required>
<button type="submit">Notify Me</button>
</form>
</div>
</body>
</html>