Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
67 views

Laravel/Livewire password validation is failing when passwords match. Using laravel/fortify. In BasicWizardStepComponent: abstract class BaseWizardStepComponent extends StepComponent { abstract ...
kirkaracha's user avatar
2 votes
2 answers
2k views

I am using the react-native-confirmation-code-field package. I want the keyboard to be showing as soon as the screen renders and the first cell in focus. Any ideas how to do this? Edit: Including ...
Andrew Einhorn's user avatar
1 vote
0 answers
22 views

The JavaScript function does not apply to the form and the Submit button in HTML The 'js' file is inside another folder I also did the link to the 'js' file correctly function check_pass() { if (...
Jack Anderson's user avatar
0 votes
1 answer
505 views

I have created a (CustomUserForm) like the below: from django.contrib.auth.forms import UserChangeForm from .models import User from django import forms class CustomUserForm(UserChangeForm): ...
Osama Mohammed's user avatar
2 votes
1 answer
6k views

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
reactTech's user avatar
0 votes
1 answer
175 views

I'm trying to display an error message when password doesn't match its confirmation. Here is the relevant code in the form class file: ->add('password', RepeatedType::class, array( '...
Nadim's user avatar
  • 404
0 votes
1 answer
2k views

I want to validate password confirmation with Yup but it doesn't work. This is my code : <template> <form @submit="onSubmit"> <div> <label for="password&...
Aras121's user avatar
  • 91
1 vote
1 answer
1k views

I am new to Livewire and I'm trying to use a modal password confirmation in Laravel 8 using Jetstream/Livewire/TailwindCSS. I'd like to do this as an added layer of protection before providing the ...
Joey R.'s user avatar
  • 23
0 votes
0 answers
36 views

conPass.addTextChangedListener(new TextWatcher() { @Override public void beforeTextChanged(CharSequence s, int start, int count, int after) { } @...
June Noble Nuñez's user avatar
1 vote
0 answers
2k views

I'm working in a front-end app with Vue 3, @vuelidate/core, @vuelidate/validators and Bulma Framework. However I have a month and a few weeks trying to validate a "confirmPassword" field, ...
Benja Ramírez's user avatar
1 vote
1 answer
1k views

When creating a User with Backpack's CRUD, how can I add a field in setupCreateOperation for both my password and the password confirmation? I know I can add a field for the password in multiple ways, ...
pierluromani's user avatar
1 vote
1 answer
121 views

I have a page where the user can change their account password. I made a form for password validation, but I don't know how I can check if the password in the field "old_password" is the ...
Rares D's user avatar
  • 123
0 votes
2 answers
2k views

a new password.confirm feature has been added to the laravel 6.2 framework. I have a fresh laravel 6.18.8 installation, I have done multi-authentication based on guard. I want to run password.confirm ...
devhubpl's user avatar
0 votes
1 answer
56 views

I have a registration form. It successfully checks the value of password input and confirm_password input. (X changes to ✔️ if both passwords match) The thing is, after check mark appears, it looks ...
Ata's user avatar
  • 19
0 votes
1 answer
259 views

In my Spring Boot application I have an "edit user" form, the form is bound to a SecurityUser bean, but has an additional (non-bean) field for confirming the password. The GET mapping in my ...
workerjoe's user avatar
  • 2,765
0 votes
3 answers
116 views

I am working on a user registration form containing only 3 fields Username,password and confirm password. But when i insert data, if password is mismatching, the exception appears form mismatch but on ...
Muhammad Ali's user avatar
0 votes
3 answers
2k views

while implementing my code i am getting following errors in console Error: Cannot find control with name: 'password' at _throwError (forms.js:1732) at setUpControl (forms.js:1640) at ...
Arpit Aggarwal's user avatar
0 votes
1 answer
226 views

<?php include("../../config/database_connection.php"); if( isset($_POST) ) { $user_name =$_POST['user_name']; $email = $_POST['email']; $user_pass_init = $_POST['password']; ...
Ankit Shah's user avatar
  • 1,345
-1 votes
1 answer
595 views

I need to get the same password in cpassword. But here although the passwords match it gives error that the password do not match. When I remove the rule of equalTo the methods works fine. So I think ...
shavindip's user avatar
  • 622
4 votes
0 answers
520 views

I have a Cognito User pool instance and I need to add a confirm password field in the signup form of Hosted Ui. However, I can't specify it anywhere in the userpool configuration. Does anyone know how ...
Zainab's user avatar
  • 51
13 votes
1 answer
42k views

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, ...
user avatar
0 votes
1 answer
88 views

I'm trying to build a form that checks to make sure my pin and pswd match for a form. But not sure what I'm missing. I'm a little young to the WebDev world and I have spent a stupid amount of time ...
secondbrkfast's user avatar
0 votes
3 answers
295 views

I've found some similar questions. However I'm still having trouble fixing this. I am having troubles with my confirm password validation. If I write something in the password input and then write the ...
Diego Rios's user avatar
0 votes
1 answer
469 views

Im my project I have issues with using the confirm password. I don't have confirm password field in my database, I assume that is the reason I am getting this error. My Model public $...
Mohan Prasad's user avatar
2 votes
1 answer
2k views

We are using below code for "sign up". we have only password field , we want to add confirm password field. signup.php if(isset($_POST['btn-signup'])) { $uname = trim($_POST['txtuname']); $...
user avatar
1 vote
1 answer
1k views

I am making a form in Android and I want to know how would I go insert a check mark when user enters both password correctly. I am going to use the built in drawable checkmark as described in this ...
user2353565's user avatar
4 votes
1 answer
5k views

I am developing using Laravel-5.1. I have the .env config file working properly on development environment which is windows 8, 4GB RAM. When I deployed to the remote server which is Centos-6, I began ...
ken4ward's user avatar
  • 2,296
1 vote
1 answer
483 views

Rails only checks for field confirmations if there is a corresponding _confirmation field in the request. To explain it further, here is a sample Rails view: <%= form_for(resource, as: ...
Noman Ur Rehman's user avatar
3 votes
2 answers
485 views

I am new to android, and I just started making a signup activity for my app. I found a number of tutorials like this one. What really got me confused is that in all of the tutorials the Confirm/...
MCVC's user avatar
  • 33
28 votes
5 answers
34k views

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 my ...
sunnysm's user avatar
  • 349
0 votes
1 answer
534 views

I am using Asp.net MVC to create a password and confirm password field. I am currently using the remote attribute to check if password and confirm password are the same, however remote will only call ...
Steve Paytosh's user avatar
2 votes
1 answer
2k views

I have a sign-up form that creates a profile and an "Edit Profile" page that allows the user to change information as long as they also enter their password. The problem is that the "Edit Profile" ...
real_big_words's user avatar
0 votes
0 answers
266 views

I am working on a project and I need to do a password reset system. I'm not using any gem. mailers/password_reset.rb class PasswordReset < ActionMailer::Base default from: '[email protected]' ...
sadtroll's user avatar
  • 191
6 votes
3 answers
30k views

I have this script here: angular.module('UserValidation', []).directive('validPasswordC', function () { return { require: 'ngModel', link: function (scope, elm, attrs, ctrl) { ...
kgam's user avatar
  • 227
0 votes
1 answer
2k views

I ran into an issue when I try to render an error message associated to a repeated password field. The issue is the invalid_message does not get rendered if I implement the twig as follows, {{ ...
Hasitha Shan's user avatar
  • 2,980
1 vote
2 answers
706 views

I 'd like to confirm the password as my pattern then add it to database. I tried to input too many kind of input type, but it doesn't work. I didn't get any error but I can't add anything to my ...
thatway_3's user avatar
  • 434
0 votes
2 answers
5k views

Here is the code, I load all Jquery scripts in layout, however, when I type password different from confirm-password. It does not validate after cursor moving out of confirm password field, I don't ...
new-learner's user avatar
7 votes
1 answer
6k views

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 looked ...
NoobException's user avatar
2 votes
2 answers
4k views

Would anybody who has more experience with Rails 4 be able to help me out. I'm currently going through "Rails 4 in Action" and I'm having trouble getting one of the specs from the book to pass (...
Alphonse23's user avatar
1 vote
1 answer
14k views

I'm creating a Create Account page and I'm trying to verify that the password they are creating follows the proper format. The password format needs to be: Minimum of: 15 characters 2 UPPER 2 lower 2 ...
jzamora1229's user avatar
2 votes
4 answers
10k views

I have two EditTexts, one for entering password and other for confirm this password.Maximum length of these edittexts are 5. confirmPwdEdiText.addTextChangedListener(new TextWatcher() { public void ...
Devu Soman's user avatar
  • 2,276
1 vote
1 answer
299 views

I have this code for an email settings form that the user will input the email address, password, etc. $form['mail_settings']['user_pass'] = array( '#type' => 'password_confirm', '#description' =&...
Jetoox's user avatar
  • 1,447
0 votes
1 answer
5k views

i've a problem with password confirmation validation in User Model: validates :password, :confirmation => true and in the view new.html.erb: <%= form_for(@user) do |f| %> <div ...
Dabidi's user avatar
  • 407
0 votes
1 answer
238 views

I've been struggling with this for an hour now and still can't understand what's wrong. Here's how I set my two fields: $password = $this->createElement('password', 'password'); $password->...
Michael De Keyser's user avatar
1 vote
1 answer
780 views

I am trying to set up the password confirmation only on the page, where the user change his password. My model looks this way: class User < ActiveRecord::Base attr_accessor :...
user984621's user avatar
  • 48.8k
1 vote
1 answer
3k views

I'm trying to "tweak" a behavior that I am seeing using Ruby on Rails validator. In our application, we ask for password confirmation before changing a password. That is very easy with the Ruby ...
Khelben's user avatar
  • 6,491
4 votes
2 answers
4k views

I have a validates_confirmation_of :password in my User model. The problem is I also run @comment.user.save! when a comment is created to update some attributes on the user account. I get an error ...
Tony Beninate's user avatar
8 votes
4 answers
4k views

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 error ...
steffi2392's user avatar
  • 1,365
0 votes
2 answers
806 views

ZF 1.11.3 here. $validators = array( 'pass1' => array('presence' => 'required'), 'pass2' => array(array('Identical', true, 'token' => 'pass1')) ), $input = new Zend_Filter_Input(...
nevvermind's user avatar
  • 3,382
18 votes
2 answers
25k views

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 :...
Joe's user avatar
  • 1,765