Simple request form

I need help with the html/jscript for a simple request form:

name, email, userrequest1, userrequest2 ==> Request button

I can set up the fields on the backend, but what would the html/javascript look like?

Thanks. I know this is so basic…but I need help.

do you use Backendless on the server side?

yes, then I would like to post to the backendless cloud. Does this make sense? I would like to do what the registration does only without the requirement of a password which I can’t get rid of.

So I setup a new database called requests on backendless.

When the user presses the Request button, you want the form to send data to the server so a request is saved in the table. Is that correct?

Yes, but I don’t want to ask for a password. It’s not a registration.

To save an object in a table, you should use the following API:

http://backendless.com/documentation/data/js/data_saving_data_objects.htm

What I would recommend though is to start with the getting started guide so you can have something working by following an example and see Backendless in action:
https://backendless.com/backend-as-a-service/quick-start-guide-for-javascript/

Thank you! This is what I was looking for and just didn’t know where to look.