This commit is contained in:
Robert
2025-03-10 18:11:44 +00:00
parent 53cc07dc30
commit 6fe1c3fe19
4 changed files with 21 additions and 1 deletions
+13
View File
@@ -61,3 +61,16 @@ button:hover {
color: green; color: green;
} }
button.buttonback {
position: absolute;
top: 10px;
left: 10px;
color: blue;
text-align: left;
vertical-align: text-top;
background-color: black;
border: none;
padding: 10px 20px;
cursor: pointer;
font-size: 16px;
}
+2
View File
@@ -1,3 +1,5 @@
<html> <html>
<div style="width:100%;height:500px;" data-fillout-id="aWUkWGKkMNus" data-fillout-embed-type="standard" data-fillout-inherit-parameters data-fillout-dynamic-resize></div><script src="https://server.fillout.com/embed/v1/"></script> <div style="width:100%;height:500px;" data-fillout-id="aWUkWGKkMNus" data-fillout-embed-type="standard" data-fillout-inherit-parameters data-fillout-dynamic-resize></div><script src="https://server.fillout.com/embed/v1/"></script>
</html> </html>
<link href="/Contact.css" rel="stylesheet">
<button class="buttonback" onclick="redirectToFile()">Back</button>
+4
View File
@@ -1,3 +1,7 @@
function redirectToFile() {
window.location.href = 'index.html'; // Replace 'file.html' with the actual file you want to redirect to
}
document.getElementById('contactForm').addEventListener('submit', function(event) { document.getElementById('contactForm').addEventListener('submit', function(event) {
event.preventDefault(); event.preventDefault();
const Name = document.getElementById('Name').value; const Name = document.getElementById('Name').value;
+2 -1
View File
@@ -53,4 +53,5 @@ body {
button:hover { button:hover {
background-color: #ff4a3d; background-color: #ff4a3d;
} }