Generating a pricing quote page for client to sign

I’m working on a pricing quote app, where on a “Send proposal” action I want to generate a webpage and send an email to the client with a URL to that webpage that the client can access without signing in. The generated page should show the quote the Glide app user just put together in the Glide app, with pre-defined/templated pictures, testimonials, terms & conditions, and a Glide signature component that the customer can sign to accept the proposal. Every time the client opens the quote URL, Glide should record each “open” with a time stamp. Once signed, Glide should change the status of the quote and notify the user who generated the quote. A “Preview quote” button to see a preview of the generated quote page before sending it to the client would also be nice.

Is this possible with Glide? And if so, how should it be done?

You can create a workflow to set column value before trigger the open link! That will allow you to set a timestamp everytime a URL is clicked.

You can add a submit button to trigger a workflow after signature, or, you could use my most recent solution from today, use an AI Component to trigger a workflow on value update:

If you need more help, feel free to ask! :slight_smile:

Thank you for the swift reply! My main headache right now is figuring out how to generate a webpage with the quote and signature field, and create a url to the page that I can email to the client. Any ideas?

You want the webpage inside Glide, right?

I’m not sure. Ideally, yes, but I want the client to be able to see the quote without logging in, but the rest of the app has to be private. I’ve looked into deep linking, but that just seems to link to any page within Glide that would let the client access all parts of the Glide app even without them logging in, right? That wouldn’t work either. I’d like to be able to use Glide’s signature component so I don’t have to use an additional integration or external tool for that, but is that the only way to solve this?

You can’t make a Glide app secure if you are not using row owners with logged-in user, unfortunately. I mean, it would work, but by allowing the item to be accessible from unsigned users will allow the app to download all these rows to the client browser.
Take a look at my thread here:

You can use integrations, of course, like DocuSign.


But in your case, you can use Glide Signature Component.

For security reasons, you should enable user login and set row-level permissions to ensure they can only access specific data. This will allow you to send them deep links securely.
Take a look at this documentation:

:slight_smile:

If you don’t care about users potentially seeing other data inside the app, then I would suggest a public app pointing to the same table. You can construct a URL of the same entity in the public app so your clients can access it.

Otherwise, it’s best to just generate a PDF with PDFMonkey/DocsAutomator then send it with DocuSign.