[SOLVED] Wich is best way to public a page of project for subscriptions to an event

Hi,

I have to manage subscription to events (name, date, other specific fields) using a M/D form. Someone who own the link can insert his/her data through the form.
My willing is to public the form and optionally ask for a password to access it just to avoid spam and problems.
The form has to, have as the only active button , the “insert” and I have to present the form everytime empty.
Which is the right way to do it ?
I used also new friendly URL who suggest within url “subscription event form” but I don’t understand its better using.

Just create a crud form, but remove all buttons except insert from the toolbar and call this ‘apply’ or something similar. To prevent spam you can add an encapcha code. I think that would be all. In the onafterinsert event you can send a conformation email. The from will restart empty after insert.

Thanks,
I did with only insert button, but, when I access to form, I find always the first record inserted. How can I avoid that ?

[CLOSED]
OK. It was easier than I thought
OnScriptInit:
sc_apl_conf(“my_form”, “start”, “new”);

Bye