“yup validieren Passwortbestätigung” Code-Antworten

yup validieren Passwortbestätigung

import * as Yup from 'yup';

validationSchema: Yup.object({
  password: Yup.string().required('Password is required'),
  passwordConfirmation: Yup.string()
     .oneOf([Yup.ref('password'), null], 'Passwords must match')
});
DevPedrada

yup Validierung Passwort Fortgeschrittene

password: yup
    .string()
    .required('Please Enter your password')
    .matches(
      /^(?=.*[A-Za-z])(?=.*\d)(?=.*[@$!%*#?&])[A-Za-z\d@$!%*#?&]{8,}$/,
      "Must Contain 8 Characters, One Uppercase, One Lowercase, One Number and one special case Character"
    ),
Mystic Dev

So machen Sie Passwort bestätigen in yup

passwordConfirm: Yup.string()
+               .label('Password Confirm')
+               .required()
+               .oneOf([Yup.ref('password')], 'Passwords does not match'),
Pleasant Pintail

Yup Passwort bestätigen Passwort

Yup.object({
  password: Yup.string().required('Password is required'),
  passwordConfirmation: Yup.string()
    .test('passwords-match', 'Passwords must match', function(value){
      return this.parent.password === value
    })
})
Quaint Quail

Ähnliche Antworten wie “yup validieren Passwortbestätigung”

Fragen ähnlich wie “yup validieren Passwortbestätigung”

Weitere verwandte Antworten zu “yup validieren Passwortbestätigung” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen