Embed quickbase form on public web page
I have done this before, but it's been a while, and my brain doesn't seem to be working today. I've also searched and not come up with the solution. I have a form to add a record, it's open to "everyone on the internet". I can open it in a browser I am not logged into and it works as I want it to. Now I want to embed this on a public web page. I cannot figure out the iframe embed code to make it work. I have a specific form assigned to "everyone on the internet", and I'd like to strip all the Quickbase "stuff" from the page and just have a "Submit" button that saves and redirects to some kind of thank you page on the site.
Make the URL use API_GenAddRecordForm
It will look something like this:
https://yourdomain.quickbase.com/db/tableid?a=API_GenAddRecordForm
Add these parameters to the end of the URL:
&ifv=1&aftersaveconfirm=1
So you should end up with this URL to use for the iframe embed code:
<iframe src="https://yourdomain.quickbase.com/db/tableid?a=API_GenAddRecordForm&ifv=1&aftersaveconfirm=1"></iframe>