qwizkool / QwizKoolNode

QwizKool Node.js based implementation
0 stars 0 forks source link

New registration form #52

Closed kgvinod closed 11 years ago

kgvinod commented 11 years ago

Fields : email, password, password repeat (username field is removed)

Username will still be available in the model (do not remove this). Set the name field in the email to the model's username. For e.g. if rmail is vinod@email.com, set username as 'vinod'. This will become the user's default user-name. The user will be able to edit the user name from a profile page. Username is not a unique id any more - only the email is unique.

Validate all fields:

Induc commented 11 years ago

Completed the following in registration form as follows

  1. Set the name field in the email to the model's username. For e.g. if rmail is vinod@email.com, set username as 'vinod'.
  2. Now the registration form has the following input fields : - Email, Password and Confirm password.

Cannot do the validation part due to following reasons:

  1. Did not find any bootstrap validation plugin.
  2. Could find only Jquery validation plugin and this is based on forms. Need the form id attribute for doing any validation.
  3. In registration, the input fields are in div and not in a form.
kgvinod commented 11 years ago

Completed