lewat.com Review
lewat.com Review
Titletag | Descriptiontag | language |
---|
Lewat.com - Reserved For Strategic Use | |
English |
Ip adress | 64.187.239.229 | Nameserver | ns2.gridhost.com ns1.gridhost.com |
Status code | 200 |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Lewat.com - Reserved For Strategic Use</title>
<link rel="stylesheet" href="/css/styles2.css" />
</head>
<body>
<div class="bg"></div>
<main class="center-wrap">
<section class="card" role="region" aria-label="Reservation notice">
<h1 class="brand">Lewat.com</h1>
<h2 class="tagline">Reserved For Strategic Use</h2>
<p class="note"><em>We're open to qualified inquiries that align with our valuation and usage standards.</em></p>
<div id="inquiry-button-container" class="mb-4">
<button class="btn inquiry-btn" type="button" onclick="loadInquiryForm()">Submit Inquiry</button>
</div>
<div id="inquiry-form-container" class="form-container" style="display:none;">
<form id="inquiry-form" method="post" class="row g-4">
<div>
<label class="form-label fw-semibold">Full Name *</label>
<input type="text" name="name" class="form-control" required value="">
</div>
<div>
<label class="form-label fw-semibold">Email Address *</label>
<input type="email" name="email" class="form-control" required value="">
</div>
<div>
<label class="form-label fw-semibold">Organization</label>
<input type="text" name="organization" class="form-control" value="">
</div>
<div>
<label class="form-label fw-semibold">Intended Use *</label>
<input type="text" name="intended_use" class="form-control" required value="">
</div>
<div>
<label class="form-label fw-semibold">Proposed Budget *</label>
<input type="text" name="budget" class="form-control" required placeholder="$ Range in USD" value="">
</div>
<div>
<label class="form-label fw-semibold">Acquisition Timeframe</label>
<input type="text" name="acquisition_timeframe" class="form-control" placeholder="e.g., Within 30 Days" value="">
</div>
<div style="grid-column:1/-1; margin-top:.5rem;">
<button type="submit" name="inquiry_submit" class="btn btn-primary">Submit Inquiry</button>
</div>
</form>
</div>
</section>
</main>
<script>
// Toggle inquiry form
function loadInquiryForm(){
const btn = document.getElementById("inquiry-button-container");
const form = document.getElementById("inquiry-form-container");
if (btn) btn.style.display = "none";
if (form) form.style.display = "block";
}
// AJAX submit (keep your endpoint)
document.addEventListener("DOMContentLoaded", function(){
const form = document.getElementById("inquiry-form");
if (!form) return;
form.addEventListener("submit", function(e){
e.preventDefault();
const fd = new FormData(form);
fd.append("inquiry_submit","1");
fetch("sub_inq.php", { method:"POST", body:fd })
.then(r => { if(!r.ok) throw new Error("Network error"); return r.json(); })
.then(data => {
const container = document.getElementById("inquiry-form-container");
if (data.success){
container.innerHTML = '<div class="alert alert-success">' + (data.message || "Thanks, we'll be in touch.") + '</div>';
} else {
const errs = (data.errors || ["Unknown error"]).map(e => "<li>"+e+"</li>").join("");
const block = '<div class="alert alert-danger"><ul class="mb-0">'+errs+'</ul></div>';
const existing = container.querySelector("form");
if (existing){
const div = document.createElement("div");
div.innerHTML = block;
container.insertBefore(div, existing);
} else {
container.innerHTML = block;
}
}
})
.catch(() => alert("An error occurred. Please try again."));
});
});
</script>
</body>
</html>
HTTP/1.1 200 OK
Date: Sun, 24 Aug 2025 01:00:07 GMT
Server: Apache/2.4.37 (centos) OpenSSL/1.1.1k
X-Powered-By: PHP/7.4.19
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Transfer-Encoding: chunked
Content-Type: text/html; charset=UTF-8