I am once again struggling to understand where I am going wrong with this task.
It is asking me to add a pattern to the input and I am still lost with how to get round this??? I’ve put in everything it needs so far and still nothing is coming out correct at all.
Could I have some help please, as this task is challenging to say the least.
Many Thanks
**Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<head>
<title>Registration Form</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<h1>Registration Form</h1>
<p>Please fill out this form with the required information</p>
<form action='https://register-demo.freecodecamp.org'>
<fieldset>
<label>Enter Your First Name: <input type="text" required /></label>
<label>Enter Your Last Name: <input type="text" required /></label>
<label>Enter Your Email: <input type="email" required /></label>
<label>Create a New Password: <input type="password" pattern="[a-z0-5] {8,}" required ></label>
</fieldset>
<fieldset></fieldset>
<fieldset></fieldset>
<input type="submit" value="Submit" />
</form>
</body>
</html>
you should remove the existing attribute identified in the instructions, then add the new attribute given in the instructions with a value of the given regular expression
No sadly. It is telling me “You should give the password input element a pattern attribute.” I have even tried giving it a value attribute as well. I am still new to all this and I am learning slowly.
Sorry for my delay in replying to you, I have only just read your message.
Thank you for your help and support, I will give it a try and I will get back to you on this situation if it does not work. But I have faith in people on here willing to help at all times.