File: /home/wbwebdes/domains/domain.wb-webdesign.com/private_html/2.html
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Domein Geregistreerd</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: linear-gradient(to bottom, #004080, #66a3ff);
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
padding: 0 15px;
}
.container {
max-width: 600px;
padding: 20px;
width: 100%;
box-sizing: border-box;
}
.domain {
font-size: 2.5rem;
font-weight: bold;
}
.status-message {
font-size: 1.5rem;
margin-top: 10px;
}
.search-bar {
margin-top: 20px;
}
.search-bar input {
width: 70%;
padding: 10px;
border: none;
border-radius: 5px;
font-size: 1rem;
}
.search-bar button {
padding: 10px 20px;
border: none;
border-radius: 5px;
background-color: #0066cc;
color: white;
font-size: 1rem;
cursor: pointer;
transition: background-color 0.3s;
margin-top: 10px;
}
.search-bar button:hover {
background-color: #004080;
}
.footer {
position: absolute;
bottom: 20px;
}
.footer img {
height: 30px;
}
</style>
</head>
<body>
<div class="container">
<div class="domain" id="domain">Dit domein</div>
<div class="status-message">is geregistreerd bij WB Webdesign</div>
<div class="search-bar">
<p id="input-label">Registreer nu uw domeinnaam:</p>
<form action="https://portal.wb-webdesign.com/cart.php?a=add&domain=register" method="post">
<input type="text" name="query" placeholder="Bijvoorbeeld: mijnwebsite.nl" required />
<button type="submit">Registreer of verhuis uw domeinnaam</button>
</form>
</div>
</div>
<div class="footer">
<a href="https://wb-webdesign.com" target="_blank" rel="noopener noreferrer">
<img src="https://legal.wb-webdesign.com/uploads/logo.svg" alt="WB Webdesign Logo" />
</a>
</div>
<script>
// Haal parameter ?domein= op uit URL
const params = new URLSearchParams(window.location.search);
const domein = params.get("domein");
if (domein && domein.trim() !== "") {
document.getElementById("domain").textContent = domein;
}
</script>
</body>
</html>