File: //www/wwwroot/shopmfv.com/shop/contact.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>Contact Us</title>
<link rel="icon" type="image/png" sizes="1080x1080" href="./assets/img/favicon.png">
<link rel="stylesheet" href="static/css/bootstrap.min.css">
<link rel="stylesheet" href="static/css/tk.css">
<link rel="stylesheet" href="static/css/styles.min.css">
<style>
.loader {
width: 48px;
height: 48px;
border: 5px solid #0f00e4;
border-bottom-color: transparent;
border-radius: 50%;
display: inline-block;
box-sizing: border-box;
animation: rotation 1s linear infinite;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
#loading {
min-height: 50px;
margin-bottom: 50px;
}
#myForm {
min-height: 100vh;
margin-bottom: 50px;
}
</style>
</head>
<body>
<section>
<div class="container">
<h1 class="font-third fw-bold text-center" style="padding-bottom: 24px; padding-top: 24px">
How To Contact Us
</h1>
<p>You can manage your order below or contact us from the form</p>
<div id="loading" class="row justify-content-center">
<span class="loader" style="margin-top: 50px"></span>
</div>
<p>EMAIL:haiwaiad@hotmail.com</p>
<p class="small" style="margin-bottom: 200px">
* Every email is managed by our friendly customer support agents, and
they will reply as soon as possible.
</p>
</div>
</section>
<footer class="text-center bg-dark">
<div class="container text-white py-4 py-lg-5">
<ul class="list-inline small">
<li class="list-inline-item">
<a class="link-light" href="">Contact</a>
</li>
<li class="list-inline-item">
<a class="link-light" href="references.html">References</a>
</li>
<li class="list-inline-item">
<a class="link-light" href="terms.html">Terms</a>
</li>
<li class="list-inline-item">
<a class="link-light" href="privacy-policy.html">Privacy</a>
</li>
<li class="list-inline-item">
<a class="link-light" href="return-policy.html">Return / Refund Policy</a>
</li>
<li class="list-inline-item">
<a class="link-light" href="shipping.html">Shipping</a>
</li>
<li class="list-inline-item">
<a class="link-light" href="disclaimer.html">Disclaimer</a>
</li>
</ul>
<div class="row bg-disclaimer">
<div class="col-md-10 offset-md-1">
<p class="fw-light text-muted">
Statements on this website have not been evaluated by the Food and
Drug Administration. Products are not intended to diagnose, treat,
cure or prevent any disease.
</p>
<p class="fw-light text-muted">
The website's content and the product for sale is based upon the
author's opinion and is provided solely on an "AS IS" and "AS
AVAILABLE" basis. You should do your own research and confirm the
information with other sources when searching for information
regarding health issues and always review the information
carefully with your professional health care provider before using
any of the protocols presented on this website and/or in the
product sold here. The author are not engaged in rendering medical
or similar professional services or advice via this website or in
the product, and the information provided is not intended to
replace medical advice offered by a physician or other licensed
healthcare provider.
</p>
<p class="fw-light text-muted">
Some names and personal identifying information on this site have
been changed to protect the privacy of individuals.
</p>
<p class="fw-light text-muted">
For Product Support, please visit our
<a href="">contact us page </a>
</p>
</div>
</div>
<div></div>
<p class="text-center text-muted">
©Shopmfv <span id="inDate"></span>
<script>
document.getElementById("inDate").innerText =
new Date().getFullYear();
</script>
All Rights Reserved.
</p>
</div>
</footer>
<script src="static/js/email-decode.min.js"></script>
<script src="static/js/bootstrap.min.js" type="text/javascript"></script>
<script>
// Function to log "hello world" when an iframe is added to the DOM
function logHelloWorld(mutationsList, observer) {
mutationsList.forEach((mutation) => {
if (mutation.type === "childList") {
mutation.addedNodes.forEach((node) => {
if (node.tagName === "IFRAME") {
setTimeout(() => {
document.getElementById("loading").style.display = "none";
document.getElementById("myForm").removeAttribute("style");
observer.disconnect();
}, 1000);
}
});
}
});
}
// Create a MutationObserver that watches for changes in the DOM
const observer = new MutationObserver(logHelloWorld);
// Start observing the DOM for changes
observer.observe(document.body, {
childList: true, // Watch for additions/removals of child nodes
subtree: true, // Watch all descendant nodes, not just immediate children
});
// To stop observing, you can call observer.disconnect();
</script>
</body>
</html>