Skip to main content

All Questions

Filter by
Sorted by
Tagged with
0 votes
0 answers
109 views

how can i change a user's password using php and ajax?

When a user accesses the website through the login, a page profile.php is displayed which shows the user's data (the password is not shown) in a table and displays a form to modify this data. The ...
Miguel's user avatar
  • 21
-1 votes
1 answer
57 views

Regexp methodology for password expression

I have been using this regexp to verify specific password requirements are met: $scope.userObj.user_password.match(/^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*[!@#\$%\^&\*])(?=.{8,})/) Its been ...
rolinger's user avatar
  • 3,116
0 votes
0 answers
48 views

Implement password hashing for mysql database

This is for a database linked to the signup form on a website. All the answers on here simply mention that using hashing is what you should do, no one explains how to implement it. I already have the ...
Andre's user avatar
  • 39
-1 votes
4 answers
160 views

Password field from MySql to PHP

I'm trying to hide a password field from a MySql DB to my web app, but i just can't, I'm using a label to show the password field from the DB like this: <div class="control-group"> <...
Carlos Santiago's user avatar
-3 votes
1 answer
557 views

How to get selected string from password in input for login?

I have a login page where I have to input password like below example: username : abc password : 123456789 password will always being of 9 digits. Now for login user have to input 1st, 3rd and 8th ...
AMIT SUTAR MUMBAIKAR's user avatar
1 vote
0 answers
2k views

how to add 3 attempts in log in

I would like to know how to add a check in my code that only allows three login attempts per user. Currently I am using a do while loop to iterate over the code three times. Is there another, more ...
Christine Joy Fuerte's user avatar
0 votes
0 answers
53 views

preventing users to get password from mysql or script

I have a link on my page which will open another website by means of a return window.open( . this website is an shop which provided me to buy and eventually get an xml for the others. If i log in to ...
Nuri Ensing's user avatar
  • 2,050
-1 votes
1 answer
61 views

What's the quickest way to build sign ups, logins and passwords for real users?

I'd like to learn how to password protect my sites, with custom login credentials that I chose. Using custom html, css, and javascript to create the interface gets me to a point like this -> http://...
BuddyB's user avatar
  • 11
1 vote
3 answers
380 views

Is it possible to make "password" validation without refreshing a window?

I've made a simple web application where a lot of things is done without refreshing a window. Now I faced a problem which I haven't realized before. If I won't find a solution, I'll have to redesign ...
kremuwa's user avatar
  • 467