Hello,
I'm using Ruby on Rails to make an application where businesses can create accounts and add information about their clients. I would like to be able to generate a form that they can put on their website to automatically enter the clients' info into their account. I know I might be able to do something like:
<% form_tag my_site_url_with_action do %>
....put here the fields for client info
But I was wondering if there is a way to make it secure by ensure that it's coming from my client's website as opposed from some spam website or so.
Any ideas?
Thanks,
Tam