|
Server IP : 2a02:4780:3:1493:0:3736:a38e:7 / Your IP : 216.73.216.86 Web Server : LiteSpeed System : Linux sg-nme-web1393.main-hosting.eu 4.18.0-553.84.1.lve.el8.x86_64 #1 SMP Tue Nov 25 18:33:03 UTC 2025 x86_64 User : u926327694 ( 926327694) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : ON Directory (0755) : /home/u926327694/domains/smsoft.in/public_html/demo/src/../../ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Enquiry Form - Preview</title>
<style>
body {
font-family: Arial, sans-serif;
background: #f2f2f2;
padding: 20px;
}
.form-box {
max-width: 450px;
margin: auto;
background: #ffffff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
h2 {
text-align: center;
}
input, textarea {
width: 100%;
padding: 10px;
margin: 8px 0;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 14px;
}
.checkbox-row {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 13px;
}
.checkbox-row input {
width: auto;
margin-top: 3px;
}
button {
width: 100%;
background: #007bff;
color: #fff;
padding: 12px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background: #0056b3;
}
</style>
</head>
<body>
<div class="form-box">
<h2>Enquiry Form</h2>
<form>
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<input type="tel" placeholder="Mobile Number" required>
<textarea placeholder="Your Enquiry" rows="4" required></textarea>
<div class="checkbox-row">
<input type="checkbox" id="consent" required>
<label for="consent">
I agree to the <a href="#">Terms & Conditions</a> and
<a href="#">Privacy Policy</a> and I consent to receive updates through SMS/Email.
</label>
</div>
<br>
<button type="submit">Submit Enquiry</button>
</form>
</div>
</body>
</html>