reset password
Author Message
lmann2
Posts: 156
Posted 21:38 Feb 20, 2015 |

, and a password must consist of at least 4 characters and include both letters and numbers.

 

  Does this mean that we need to change the passwords on our dummy/script data to include integers for all users?  The validator I wrote functions on both the login and student update pages.  If we don't need to change our dummy data i'll have to separate the validator classes.  

Last edited by lmann2 at 21:38 Feb 20, 2015.
cysun
Posts: 2935
Posted 22:26 Feb 20, 2015 |

Leave the passwords in the db scripts as is. The password validator shouldn't be applied to login.

lmann2
Posts: 156
Posted 23:45 Feb 20, 2015 |

Do students need to update their password on the same screen that they update their major on (ie in the same form)?  

cysun
Posts: 2935
Posted 08:54 Feb 21, 2015 |
lmann2 wrote:

Do students need to update their password on the same screen that they update their major on (ie in the same form)?  

This is up to you.

lmann2
Posts: 156
Posted 13:37 Feb 21, 2015 |

In particular, the password field cannot be empty (in fact, an empty password should be interpreted as the user not wanting to change password)

Can we use a validator error message for this or did you want some other action performed on a empty password field. Also, my validator isn&#39;t applied to login, but it is applied to the update screen (with all rules enforced);Is that okay?<

Last edited by lmann2 at 13:38 Feb 21, 2015.
cysun
Posts: 2935
Posted 13:41 Feb 21, 2015 |

See this.

lmann2
Posts: 156
Posted 15:16 Feb 21, 2015 |

perfect I don't think I have enough time to write a jquery function to handle the alternative.