Demo Code and Sample
Integrating FormHouse is super easy, no library, no dependency needed!!
We've made samples for you! simple implementations for different tech stacks!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Form House Demo</title>
</head>
<body>
<!-- modify this form HTML and place wherever you want your in form -->
<form action="https://data.formhouse.pro/37b6QWj75X6glqPyLW629y" method="POST">
<label>
Your name:
<input type="text" name="name" />
</label>
<label>
Your email:
<input type="email" name="email" />
</label>
<label>
Your message:
<textarea name="message"></textarea>
</label>
<label>
Attachment:
<input name="inputfile" type="file"></input>
</label>
<!-- your other form fields go here -->
<button type="submit">Send</button>
</form>
</body>
</html>