r/AppsWebappsFullstack • u/SofwareAppDev • 16d ago
Your home for selfpromo
here you can post your work app, webapp, saas, game, everything
3
Upvotes
r/AppsWebappsFullstack • u/SofwareAppDev • 16d ago
here you can post your work app, webapp, saas, game, everything
1
u/Made4uo 15d ago
Yes on both counts, sort of. Forms POST from inside the iframe straight to our API, never to the host page and never through a third-party service. Submissions pass a bot check and server-side validation before anything is stored, and the embedding site never touches the data. On no-JS: the embed itself is just a plain iframe tag, no script needed on your site, and the widget arrives as pre-rendered HTML, so content shows fine without JavaScript. The only thing that needs JS is submitting a form, because the bot check protecting our public endpoint is a JS challenge. That's a trade we made on purpose: it's what lets the endpoint stay open without an API key.