password-confirmation Questions
5
Solved
Here I need to add an extra confirmation password in my form.I used Django's modelform. I also need to validate both passwords. It must raise a validation error if password1 != password2.
Here is ...
Kablesh asked 5/1, 2016 at 10:48
1
Solved
I'm having issues understanding how the Strapi email confirmation is supposed to work. I get this:
http://0.0.0.0/auth/emailconfirmation?confirmation=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9
Coster asked 20/1, 2022 at 15:30
1
I have read https://getbootstrap.com/docs/4.0/components/forms/#validation. After reading I guess it is possible to check confirmation password in client site using bootstrap 4 default options. And...
Nahum asked 20/4, 2018 at 14:10
3
Solved
I have this script here:
angular.module('UserValidation', []).directive('validPasswordC', function () {
return {
require: 'ngModel',
link: function (scope, elm, attrs, ctrl) {
ctrl.$parsers.un...
Unbolt asked 10/11, 2014 at 10:58
4
Solved
I'm trying to set my program so that the password only is validated if it is changed (so a user can edit other information without having to put in their password).
I am currently getting an erro...
Alfeus asked 16/8, 2011 at 15:37
1
Solved
I'm going through one of the Rails tutorials, during a section on user validations, I keep getting an error telling me my password confirmations can't be blank when editing/creating a user. I looke...
Mapping asked 23/10, 2013 at 16:38
2
I can't figure out why the model doesen't check for the password confirmation, this is the code of the model:
class User < ActiveRecord::Base
attr_accessor :password_confirmation
validates :e...
Simplistic asked 15/1, 2011 at 1:29
1
© 2022 - 2024 — McMap. All rights reserved.