115 Zeilen
4.7 KiB
HTML
115 Zeilen
4.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
|
<meta name="description" content="" />
|
|
<title>Anwi Systems</title>
|
|
<!-- Favicon -->
|
|
<link rel="shortcut icon" type="image/x-icon" href="./assets/img/favicon.gif" />
|
|
|
|
<!--**********************************
|
|
all css files
|
|
*************************************-->
|
|
|
|
<!--***************************************************
|
|
fontawesome,bootstrap,plugins and main style css
|
|
***************************************************-->
|
|
<!-- cdn links -->
|
|
|
|
<link rel="stylesheet" href="assets/css/fontawesome.min.css" />
|
|
<link rel="stylesheet" href="assets/css/ionicons.min.css" />
|
|
<link rel="stylesheet" href="assets/css/simple-line-icons.css" />
|
|
<link rel="stylesheet" href="assets/css/plugins/jquery-ui.min.css">
|
|
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
|
|
<link rel="stylesheet" href="assets/css/plugins/plugins.css" />
|
|
<!-- <link rel="stylesheet" href="assets/css/style.min.css" /> -->
|
|
<link rel="stylesheet" href="assets/css/main-style.css" />
|
|
<link rel="stylesheet" href="assets/css/responsive.css" />
|
|
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" />
|
|
<link rel="stylesheet" href="assets/css/products.css">
|
|
|
|
<!-- Use the minified version files listed below for better performance and remove the files listed above -->
|
|
<style>
|
|
.form-control:focus {
|
|
box-shadow: none;
|
|
border-bottom: 1px solid #86b7fe;
|
|
}
|
|
.form-control {
|
|
border: none;
|
|
border-bottom: 1px solid #dee2e6;
|
|
border-radius: 0px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body data-page="product">
|
|
<!-- navbar -->
|
|
<!-- <div id="navbar-head"></div> -->
|
|
<!-- end-of-navbar -->
|
|
|
|
<div class="d-flex m-auto w-50">
|
|
<div style="background-image: url('./assets/img/form-left-img.png');background-repeat: no-repeat;/* width: 50%; */" class="w-50">
|
|
</div>
|
|
<div class="w-50">
|
|
<div>
|
|
<h3 class="contact-page-title">Request a Quote</h3>
|
|
</div>
|
|
<div>
|
|
<form action="">
|
|
<div class="form-floating ">
|
|
<input type="text" class="form-control" id="usernames" placeholder="name@example.com" onblur="submit_enquiry()" required>
|
|
<label for="name">Your Name</label>
|
|
</div>
|
|
<div class="form-floating">
|
|
<input type="text" class="form-control" id="itemTitle" name="Title" placeholder="Password" disabled>
|
|
<label for="name">Product</label>
|
|
</div>
|
|
<div class="form-floating ">
|
|
<input type="email" class="form-control" id="floatingEmail" placeholder="name@example.com" onblur="submit_enquiry()" required>
|
|
<label for="floatingEmail">Email address</label>
|
|
</div>
|
|
<div class="form-floating">
|
|
<input type="number" class="form-control" id="floatingPhonenumber" placeholder="Password" onblur="submit_enquiry()" required>
|
|
<label for="floatingPhonenumber">Mobile No</label>
|
|
</div>
|
|
<div class="form-floating ">
|
|
<input type="email" class="form-control" id="floatingSubject" placeholder="name@example.com" required>
|
|
<label for="floatingSubject">Subject</label>
|
|
</div>
|
|
<div class="form-floating">
|
|
<textarea name="contactMessage" class="form-control" id="contactMessage" placeholder="Your Message" required></textarea>
|
|
<label for="floatingPassword">Message</label>
|
|
</div>
|
|
<div class="form-floating">
|
|
<button type="submit" value="submit" id="submitbtn" class="btn btn-success btn--lg " name="submit" onclick="submit_enquiry()">
|
|
submit
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="assets/js/vendor/jquery-3.6.0.min.js"></script>
|
|
<script src="assets/js/vendor/jquery-migrate-3.3.2.min.js"></script>
|
|
<script src="assets/js/vendor/modernizr-3.7.1.min.js"></script>
|
|
<script src="assets/js/plugins/jquery-ui.min.js"></script>
|
|
<script src="assets/js/bootstrap.bundle.min.js"></script>
|
|
<script src="assets/js/plugins/plugins.js"></script>
|
|
<script src="assets/js/plugins/ajax-contact.js"></script>
|
|
<script src="assets/js/main.js"></script>
|
|
<script src="assets/js/scroll.js"></script>
|
|
<script src="assets/js/cart.js"></script>
|
|
<script src="assets/js/form.js"></script>
|
|
|
|
<!-- navbar-js -->
|
|
<script src="assets/js/navbar.js"></script>
|
|
|
|
<!-- configuration-js -->
|
|
<script src="assets/js/config_new_1.js"></script>
|
|
|
|
<!-- footer-js -->
|
|
<script src="assets/js/footer.js"></script>
|
|
</body>
|
|
</html> |