Hi there,
To get started with meteor (first timer! ), I would like to build a small survey form with it.
Maybe you guys can help me in assessing what I need to get on my way?
System-flow:
-
User receives email with a unique link to the survey. (emails are not send by meteor)
My idea was to give links a randomly generated extension, like survey.html=4434234, as a unique id. -
If the user clicks the link:
By taking the last part of the url, the unique id (=4434234), the system checks with the database if the survey has already been completed for this link ( 4434234 = completed ? )
( If already completed: Display a message “You already filled out this form” ) -
If the survey is still open:
The user is redirected to form.html and the unique id is saved to a cookie (for id validation on submit, and so the user can’t meddle with the id inside the address bar ) -
The form.html is displayed in either of two languages, depending on the user’s system language
-
When the form is submitted:
a. There is a front-end validation using js
b. There is a backend validation to make sure that the form data is only integer, as well as checking again with the database if the unique id (read form the cookie) is still OPEN ) -
If back end validation = OK:
Display a confirmation message.
Requirements are:
- There’s no user login but the form can only be submitted once. (to avoid data pollution)
- Survey should be later exportable as csv.
Thanks for giving me your advice – I’m excited to get started with Meteor!