No server function
Keep the site on GitHub Pages without adding separate backend hosting.
GitHub Pages integration
GitHub Pages hosts static files and does not run your own server-side form handler. A FormRhythm endpoint gives the form a destination while your site stays static.
Keep the site on GitHub Pages without adding separate backend hosting.
Use a normal form action and POST request. No client library is required.
Review incoming fields and timestamps from your FormRhythm dashboard.
Replace the placeholder with the endpoint shown in your dashboard. Field names become the labels you review with each submission.
<!-- Your design stays yours -->
<form action="https://www.formrhythm.com/api/f/YOUR_FORM_ID" method="POST">
<label>Email</label>
<input type="email" name="email" required />
<textarea name="message" required></textarea>
<button type="submit">Send message</button>
</form>How it works
Create a project and form in FormRhythm.
Paste the endpoint into the action attribute and use method="POST".
Deploy the change through GitHub Pages and submit a real test response.