SUBMIT FORM ERROR

Hi new to all this please can you suggest why our submit button is doing nothing and no data is being collected ?

Image is a link to page, thanks

You need to connect each user input to specific fields (columns) in your database

:-1:

Mike its already connected whats the thumbs down for mate ?

Thought we were playing charades. If you have correctly connected the inputs (cant see from that last picture) then check that you have set the dataset to write permission, also check that you have write permission on the database

Hi Mike its writing to data set now I tested it

Can you paste me a regex for password

below verifies the following requirements in a password: Uppercase,lowercase,special character,min 8 long

var passwordCriteria = /^(?=.\d)(?=.[!@#$%^&])(?=.[a-z])(?=.*[A-Z]).{8,}$/;

if (passwordCriteria.test($w(‘#passwordInput’).value)) {

            console.log("password creation criteria met"); 

}