I'm trying to make a Regex for password strength. My aim is to have password with both letter and non letter characters. But I was unable to have the "non-letter" characters. I have this
<input minlength="6" type="password" required pattern="[(\p{L}]*" name="password">
but it checks only for alphabetic characters.
How can I make it so that it checks for string that contains at least one alphabetic and one non-alphabetic character.