I want to employ an AppGini app to provide an intake form for clients to submit some details on a request.
The flow is this:
* sales page
* click purchase button --> payment provider
* upon payment complete --> first selection page
* clicking Submit --> Intake form
* clicking Submit --> Thank You / Confirmation page
The Intake form is what I'm asking about.
When they go to this page, I need it to be like they clicked the Add button. I don't want them to be able to Cancel or return to the dashboard, only Submit and Reset/Clear form.
Submit will post to the DB and send them to the TY page.
For security purposes, I need to send a hidden field value to the form that's unique (eg, a hashed timestamp) that enables the Submit button.
How can I do this?
Intake form
Re: Intake form
The first parts are pretty straightworward. I suggest you click the Add link yourself and capture that URL. The path to your page is this page, not the AG landing page. Anonymous users should have access to this (and I would think only this), so you don't have to log in.
There are posts about how to hide buttons. Check viewtopic.php?t=2789.
I'm not following the hashed timestamp to enable the Submit button.
There are posts about how to hide buttons. Check viewtopic.php?t=2789.
I'm not following the hashed timestamp to enable the Submit button.