Delete test.html

This commit is contained in:
David Maisonave
2024-10-23 03:17:06 -04:00
parent cad16cac21
commit 174b489bc8

View File

@@ -1,27 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Website</title>
</head>
<body>
<h1>Welcome to My Website</h1>
<p>This is a simple static website.</p>
<form action="https://fabform.io/f/YOUR_FORM_ENDPOINT" method="post">
<!-- Replace "YOUR_FORM_ENDPOINT" with your actual FabForm form endpoint -->
<label for="name">Name:</label>
<input type="text" id="name" name="name" required><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required><br>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea><br>
<input type="submit" value="Submit">
</form>
</body>
</html>